You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
13 lines
206 B
Python
13 lines
206 B
Python
b = True
|
|
c = False
|
|
d = True
|
|
a = b and c or d
|
|
a = (b or c) and d
|
|
a = b or c or d
|
|
a = b and c and d
|
|
a = b or c and d
|
|
a = b and (c or d)
|
|
a = b and c or d
|
|
a = (b or c and d) and b
|
|
a = (b or c and d or a) and b
|