Skip to content

Instantly share code, notes, and snippets.

@TGITS
Created January 15, 2024 13: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 TGITS/d2f6fcb87f14a504299886ebcd97be4e to your computer and use it in GitHub Desktop.
Save TGITS/d2f6fcb87f14a504299886ebcd97be4e to your computer and use it in GitHub Desktop.
Exemple de l'utilisation de la fonction reversed sur un range en Python
print('Compte à rebours :')
for i in reversed(range(10)):
print(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment