Saved Bookmarks
| 1. |
What are the two Boolean literals in python |
|
Answer» Answer: In Python, the two Boolean values are True and False (the capitalization must be EXACTLY as shown), and the Python type is bool. In the first statement, the two operands evaluate to EQUAL values, so the EXPRESSION evaluates to True; in the second statement, 5 is not equal to 6, so we get False Explanation: FOLLOW me ✌️✌️ |
|