“python print oddrs” Ответ

python print oddrs

# Python program to print all ODD numbers in the range[a, b]
a, b = (7, 19)

for num in range(a, b+1): # b+1 is to include b itself
  if num & 1:
    print(num, end = ' ')
# output:
# 7 9 11 13 15 17 19
Playful Python

Как печатать ровные числа в Python

# Python program to print Even Numbers in given range
  
start, end = 0, 50
  
# iterating each number in list
for num in range(start, end + 1):
      
    # checking condition
    if num % 2 == 0:
        print(num, end = " ")
Happy Horse

Ответы похожие на “python print oddrs”

Вопросы похожие на “python print oddrs”

Больше похожих ответов на “python print oddrs” по Python

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

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