Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created September 5, 2021 09: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/304bd74c6b93b47c6259470b07c77d41 to your computer and use it in GitHub Desktop.
Save fatosmorina/304bd74c6b93b47c6259470b07c77d41 to your computer and use it in GitHub Desktop.
days_of_the_week = ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday']
for day in range(len(days_of_the_week)):
print(f'{days_of_the_week[day]} is day {day + 1} of the week')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment