Computer Science, asked by SOURABH52471, 1 day ago

Write the program to print numbers 1 to 10 using in python

Answers

Answered by srayangshudey
0

Answer:

for i in range(1, 11):

print(i)

Explanation:

all no. starting from 1 to (11-1) will be printed

Similar questions