InterviewSolution
Saved Bookmarks
| 1. |
Boolean Operators in Python |
||||||||
|
Answer» The Table gives a list of boolean operators available in Python along with their functions:
Examples: # and operatorprint(True and False) False # or operator print(True or False) True # not operator print(not False) True |
|||||||||