Skip to content

Instantly share code, notes, and snippets.

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