Skip to content

natnew/Python-Projects-Reverse-A-List

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3 Commits
Β 
Β 
Β 
Β 

Repository files navigation

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']

About

Python Projects Reverse A List

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages