What is the output of the following code ?
print(bool()) print(bool('False'))
False False
False True
Error
True False
bool()- always results in False 'False' is a truth value of string type , bool(True)will result in True
bool()
bool(True)
Comment here: