Skip to content

Instantly share code, notes, and snippets.

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