Computer Science, asked by vinayakindeevap2wr5a, 19 days ago

Write a Python program to print the first 10 natural numbers using for loop?​

Answers

Answered by prosantpadma
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: "))
Answered by bhartirathore299
2
  • Python program to display natural numbers from 1 to n
  1. 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: ")) ...
  2. 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: ")) ...
  3. 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