Skip to content

Instantly share code, notes, and snippets.

@rgodishela
Created June 22, 2017 04:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rgodishela/34aff9da645403b4c1c7b716685d27e9 to your computer and use it in GitHub Desktop.
Save rgodishela/34aff9da645403b4c1c7b716685d27e9 to your computer and use it in GitHub Desktop.
Python tips and tricks
How to reverse a list in Python?
1. reverse in-place
list.reverse()
2. list slicing trick
lst[::-1]
3. Reversed iterator
reversed(lst)
list(reversed(lst))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment