“Выйти на петлю Python” Ответ

Выйти на петлю 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

Питон для петли

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

Питон для петли

# 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

Ответы похожие на “Выйти на петлю Python”

Вопросы похожие на “Выйти на петлю Python”

Смотреть популярные ответы по языку

Смотреть другие языки программирования