Program in python to find the first ten natural numbers
Answers
Answered by
1
Answer:
i=1
for i in range(10):
print(i)
i=i+1
plz follow me
Answered by
0
Answer:
# Python Program to Print Natural Numbers from 1 to N
number = int(input("Please Enter any Number: "))
print("The List of Natural Numbers from 1 to {0} are".format(number))
for i in range(1, number + 1):
print (i, end = ' ')
Similar questions
Math,
4 months ago
Geography,
4 months ago
Accountancy,
9 months ago
English,
9 months ago
Science,
1 year ago
CBSE BOARD X,
1 year ago
English,
1 year ago