Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created October 6, 2021 19:57
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 fatosmorina/0ae51128fc739529585780203c14f145 to your computer and use it in GitHub Desktop.
Save fatosmorina/0ae51128fc739529585780203c14f145 to your computer and use it in GitHub Desktop.
my_list = [1, 2, 3, 4]
my_list.reverse()
for element in my_list:
print(element)
# 4
# 3
# 2
# 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment