ex.27 to ex.31

This commit is contained in:
samialazar 2020-05-27 16:52:54 +02:00
commit 7645242f74
4 changed files with 138 additions and 0 deletions

View file

@ -0,0 +1,27 @@
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