Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created June 12, 2022 14:41
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/06a5368472624f9303152e3257e29334 to your computer and use it in GitHub Desktop.
Save fatosmorina/06a5368472624f9303152e3257e29334 to your computer and use it in GitHub Desktop.
first_list = ["one", "two", "three"]
second_list = [1, 2, 3]
for i in range(len(first_list)):
print(first_list[i], second_list[i])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment