Computer Science, asked by devendrapalsingh1542, 4 months ago

Write a Python program to find even numbers from 20-100(use while loop).​

Answers

Answered by Anonymous
2

\huge\underline\mathfrak\purple{Bts}

# Python Program to Print Even Numbers from 1 to N

maximum = int(input(" Please Enter the Maximum Value : "))

for number in range(2, maximum+1, 2):

print("{0}".format(number))

Similar questions