Files
AutomateTheBoringStuffWithP…/practice_questions/ch02/loop.py

7 lines
80 B
Python
Raw Normal View History

2017-04-18 10:28:21 +08:00
for i in range(1, 11):
print(i)
i = 1
while i < 11:
print(i)
i += 1