“Comment utiliser pour Python” Réponses codées

pour Python

# how to use for in python for (range, lists)
fruits = ["pineapple","apple", "banana", "cherry"]
for x in fruits:
  if x == "apple":
    continue
  if x == "banana":
    break
  print(x)
# fron 2 to 30 by 3 step
for x in range(2, 30, 3):
  print(x)
Plain Parrot

Comment utiliser une boucle pour Python

a_list = [1,2,3,4,5]

#this loops through each element in the list and sets it equal to x
for x in a_list:
	print(x)
Koanarec

Pour Loops Python

text = "Hello World"
for i in text:
  print(i)
#Output
#H, e, l, l, o, , W, o, r, l, d
for i in range(10):
  print(i)
#1, 2, 3, 4, 5, 6, 7, 8, 9, 10
TheProgrammer

Python pour la boucle

for x in range(10):
  print(x)
The Rabbit

Python pour la boucle

 for item in ['mosh','john','sarah']:
    print(item)
Frightened Ferret

Comment utiliser pour Python

n=int(input("donner n:"))
p=1
for i in range(1, n):p=p*i
print('P=',p)
Lively Leopard

Réponses similaires à “Comment utiliser pour Python”

Questions similaires à “Comment utiliser pour Python”

Plus de réponses similaires à “Comment utiliser pour Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code