write a python program to print first 10 even numbers using loop
Answers
Answered by
1
Answer:
Python program to display natural numbers from 1 to n
#print 1 to n natural number. #using for loop. num=int(input("Please enter maxinmum number: ")) ...
#Python program to print natural number fro 1 to n. #using while loop. num=int(input("Enter maximum Natural number: ")) ...
#print 1 to n natural number. #using function. num=int(input("Please enter maxinmum number: "))
Similar questions