“boucle python en arrière” Réponses codées

Comment compter en arrière pour Loop Python

# for i in range(start, end, step)
for i in range(5, 0, -1):
    print(i)
5
4
3
2
1

    
crookie14

Itérer à travers la chaîne vers l'arrière en python

mystring = "Hi Python"
    
# Iterating through the string using while loop 
for i in mystring[-1: -7 : -1] : 
# Print all characters iterated
    print("Element of string:" , i)
Cautious Cow

boucle python en arrière

for i in reversed(xrange(101)):
    print i,
Mohieddine Farid

Réponses similaires à “boucle python en arrière”

Questions similaires à “boucle python en arrière”

Plus de réponses similaires à “boucle python en arrière” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code