Answers for "Which of the following is a Boolean in Python?"

2

Which of the following is a Boolean in Python?

>>> type(True)
<class 'bool'>
>>> type(true)
Traceback (most recent call last):
  File "<interactive input>", line 1, in <module>
NameError: name 'true' is not defined
Posted by: Guest on January-30-2021

Code answers related to "Which of the following is a Boolean in Python?"

Python Answers by Framework

Browse Popular Code Answers by Language