You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
48 lines
604 B
Python
Executable File
48 lines
604 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'
|
|
|
|
for x, y in [(1,2),(3,4)]:
|
|
if x in ['==', '>=', '>']:
|
|
if '0' in y:
|
|
print
|
|
|
|
for x in (1, 2, 3):
|
|
if x == 1:
|
|
print x
|