“Pour Loop Python” Réponses codées

Python pour la boucle

# Python for loop

for i in range(1, 101):
  # i is automatically equals to 0 if has no mention before
  # range(1, 101) is making the loop 100 times (range(1, 151) will make it to loop 150 times)
  print(i) # prints the number of i (equals to the loop number)
  
for x in [1, 2, 3, 4, 5]:
  # it will loop the length of the list (in that case 5 times)
  print(x) # prints the item in the index of the list that the loop is currently on
Unknown Species

Python pour la boucle

for i in range(1.10):
	print(i)
    
#output: 1,2,3,4,5,6,7,8,9,10
AMXX

Python pour la boucle

for x in range(6): #The Loop
  print(x) #Output 0,1,2,3,4,5
Vasilije Dimitrijevic

Pour Loop Python

iteration_number = 10 # can be any amount or how many times you want to iterate

for iteration in range(iteration_number): # how many iterations - iteration_number variable
  print(iteration)
RohBot

Pour Loop Python

for i in range():
Kodarak K

Pour Loop Python

for i in range(0):
  pass
Ashamed Aardvark

Réponses similaires à “Pour Loop Python”

Questions similaires à “Pour Loop Python”

Plus de réponses similaires à “Pour Loop Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code