ungleich-learning-circle/sami/learn-python-the-hard-way/ex28.py
2020-05-27 16:52:54 +02:00

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