“Pasos para bucle python” Código de respuesta

Pasos para bucle python

list_1 = [9, 5, 7, 2, 5, 3, 8, 14, 6, 11]

for i in range(0, len(list_1), 2) :
    print(list_1[i])
    
2 is the steps
output:
9
7
5
8
6
Worried Wallaby

Python para bucle

n = int(input("All numbers in given range"))
for i in range(n):
  print(i)
Evil Eland

Python para bucle

# python for loop
#Range
for num in range(1,100+1):
    print(num)
#step in range
for num in range(1,50,2):
    print(num)
#Itration on lists
Countries = ["US","Russia","France","India","Japan"]
for country in Countries:
    print(country)
Programmer of empires

Respuestas similares a “Pasos para bucle python”

Preguntas similares a “Pasos para bucle python”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código