Files
python-uncompyle6/test/simple_source/operation_logic/10_mixed_boolean.py

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