ex.27 to ex.31
This commit is contained in:
parent
d270952bf0
commit
7645242f74
4 changed files with 138 additions and 0 deletions
27
sami/learn-python-the-hard-way/ex28.py
Normal file
27
sami/learn-python-the-hard-way/ex28.py
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue