You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 16:59:52 +08:00
39 lines
450 B
Python
Executable File
39 lines
450 B
Python
Executable File
for i in range(10):
|
|
if i == 3:
|
|
continue
|
|
if i == 5:
|
|
break
|
|
print i,
|
|
else:
|
|
print 'Else'
|
|
print
|
|
|
|
for i in range(10):
|
|
if i == 3:
|
|
continue
|
|
print i,
|
|
else:
|
|
print 'Else'
|
|
|
|
|
|
i = 0
|
|
while i < 10:
|
|
i = i+1
|
|
if i == 3:
|
|
continue
|
|
if i == 5:
|
|
break
|
|
print i,
|
|
else:
|
|
print 'Else'
|
|
print
|
|
|
|
i = 0
|
|
while i < 10:
|
|
i = i+1
|
|
if i == 3:
|
|
continue
|
|
print i,
|
|
else:
|
|
print 'Else'
|