Computer Science, asked by ShreeyoshiG, 8 months ago

write a program to print first 10 natural number​

Answers

Answered by utkarsh11878
1

Answer:

1,2,3,4,5,6,7,8,9,10

Explanation:

The 10 natural number are:

1,2,3,4,5,6,7,8,9,10

Answered by anindyaadhikari13
1

Question:-

  • Write a program to print first 10 natural numbers.

Program:-

This is written in Python.

for j in range(1,11):

print(j, end=" ")

Similar questions