Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Last active October 6, 2021 19:58
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/f26546db231c1c8e92ac2baa741b6c62 to your computer and use it in GitHub Desktop.
Save fatosmorina/f26546db231c1c8e92ac2baa741b6c62 to your computer and use it in GitHub Desktop.
my_list = [1, 2, 3, 4]
for element in reversed(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