You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
176 B
14 lines
176 B
11 years ago
|
while True:
|
||
|
break
|
||
|
|
||
|
for i in range(4):
|
||
|
print('one', i)
|
||
|
if i > 2:
|
||
|
break
|
||
|
print('two', i)
|
||
|
|
||
|
for i in [1, 2, 3, 4]:
|
||
|
if i == 3:
|
||
|
break
|
||
|
print(i)
|