7 lines
80 B
Python
7 lines
80 B
Python
for i in range(1, 11):
|
|
print(i)
|
|
|
|
i = 1
|
|
while i < 11:
|
|
print(i)
|
|
i += 1 |