Después de mucho batallar ya hallamos la solución de este contratiempo que algunos lectores de esta web han presentado. Si quieres compartir algún detalle no dudes en compartir tu conocimiento.
Ejemplo 1: bucles de Python
#x starts at 1 and goes up to 80 @ intervals of 2for x in range(1,80,2):print(x)
Ejemplo 2: para en python
for i in range(1,10,2):#(initial,final but not included,gap)print(i);#output: 1,3,5,7,9for i in range (1,4):# (initial, final but not included)print(i);#output: 1,2,3 note: 4 not includedfor i in range (5):print(i);#output: 0,1,2,3,4 note: 5 not included
python =["ml","ai","dl"];for i in python:print(i);#output: ml,ai,dlfor i in range(1,5):#empty loop...if pass not used then it will return error
pass;
Ejemplo 3: cómo usar for loops python
#simple for loop to print numbers 1-99 inclusivefor i in range(1,100):print(i)#simple for loop to loop through a list
fruits =["apple","peach","banana"]for fruit in fruits:print(fruit)
Ejemplo 4: python para bucle
#to print number from 1 to 10for i in range(1,11):print(i)#to print a list
l =[1,2,3,4]for i in l:print(i)
r =["a","b","c","d","e"]
s =[1,2,3,4,5]#print two list with the help of zip functionfor p,q in zip(r,s):print(p,q)
Ejemplo 5: programa de bucle de Python
digits =[0,1,5]for i in digits:print(i)else:print("No items left.")
valoraciones y comentarios
Eres capaz de respaldar nuestro ensayo poniendo un comentario y dejando una valoración te damos las gracias.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)