“Cómo usar en Python” Código de respuesta

Porque en 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

Cómo usar un bucle for en 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

para bucles 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 para bucle

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

Python para bucle

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

Cómo usar en Python

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

Respuestas similares a “Cómo usar en Python”

Preguntas similares a “Cómo usar en Python”

Más respuestas relacionadas con “Cómo usar en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código