write a programme to find the odd numbers from 10 to 50
Answers
Answered by
1
HOPE IT HELPS :
Python Program to find odd numbers between 10 to 50 :
for i in range(10 , 51):
if (i%2) == 0:
continue
else :
print( i , end = " ")
STAY HOME STAY SAFE
x JOKER ALWAYS x
Similar questions