Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 377 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 377 Bytes

Python Projects: Reverse A List 🐍

This repo contains python code that reverses a list of names
Run the code.

Python

names = ['Paul', 'Jane', 'Sandra', 'Gemma', 'Hannah', 'Anne']
print(names)
names.reverse()
print(names)

Output

['Paul', 'Jane', 'Sandra', 'Gemma', 'Hannah', 'Anne']
['Anne', 'Hannah', 'Gemma', 'Sandra', 'Jane', 'Paul']