Answers for "Write the code for printing 1 t0 10 using range"

1

how to print numbers from 1 to 20 in python

for i in range(1, 21):
    print(i)
Posted by: Guest on November-25-2020

Code answers related to "Write the code for printing 1 t0 10 using range"

Python Answers by Framework

Browse Popular Code Answers by Language