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