27 lines
394 B
Python
27 lines
394 B
Python
3 == 3 and (not ("testing" == "testing" or "Python" == "Fun"))
|
|
False
|
|
|
|
3 == 3 and (not ("testing" == "testing" or False))
|
|
False
|
|
|
|
3 == 3 and (not (True or "Python" == "Fun"))
|
|
False
|
|
|
|
3 == 3 and (not (True or False))
|
|
False
|
|
|
|
3 == 3 and (not ("True"))
|
|
False
|
|
|
|
3 == 3 and False
|
|
False
|
|
|
|
True and False
|
|
False
|
|
|
|
|
|
|
|
True and False or False and True
|
|
False or False and True
|
|
False and False
|
|
False
|