Files
AutomateTheBoringStuffWithP…/practice_questions/ch02/loop.py
2017-04-18 10:28:21 +08:00

7 lines
80 B
Python

for i in range(1, 11):
print(i)
i = 1
while i < 11:
print(i)
i += 1