python for loop even numbers
for i in range(2,11,2): # range(start, end, step)
print(i)
python for loop even numbers
for i in range(2,11,2): # range(start, end, step)
print(i)
while loop odd numbers python
# Python Program to Print Odd Numbers from 1 to N
maximum = int(input(" Please Enter the Maximum Value : "))
number = 1
while number <= maximum:
if(number % 2 != 0):
print("{0}".format(number))
number = number + 1
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us