Skip to content

Instantly share code, notes, and snippets.

@TGITS
Created January 20, 2024 17:09
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/ad2ca5ae5f9a19fb9e52f6c4d3c2d85a to your computer and use it in GitHub Desktop.
Save TGITS/ad2ca5ae5f9a19fb9e52f6c4d3c2d85a to your computer and use it in GitHub Desktop.
Exemple d'utilisation de reversed sur une chaine dans un boucle et dans une compréhension
bonjour = "Hello World"
print(bonjour)
for c in reversed(bonjour):
print(c, end="")
print()
print([c for c in reversed(bonjour)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment