Computer Science, asked by sharethraam7848, 4 months ago

Python program to print first 10 natural number using while loop

Answers

Answered by shreenilogu
1

Answer:

Explanation:

#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: ")) ...

Similar questions