from random import randint
N = randint(10, 20)
for i in range(1, N+1):
print(i)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
from random import randint
N = randint(10, 20)
for i in range(1, N+1):
print(i)