Skip to content

Instantly share code, notes, and snippets.

@TGITS
Created February 29, 2024 10: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 TGITS/c0bc176fc0a2700e52d33e251e52a733 to your computer and use it in GitHub Desktop.
Save TGITS/c0bc176fc0a2700e52d33e251e52a733 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