Computer Science, asked by jasmansingh92111, 2 months ago


Write a program to print natural number from 0 to 10.​

Answers

Answered by swan58
0

Explanation:

for python:

for i in range(1,11):

print(i)

Answered by AllFatherOdin
1

Answer:

for i in range(1,11):

print(i)

Explanation: Hope you liked the solution. Please mark me as the brainliest.

Similar questions