Computer Science, asked by khushijaiswal841221, 2 months ago

write a program in python to print first ten natural number​

Answers

Answered by asuryaprakash5241
2

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

Answered by Anonymous
3

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