What will be the output of the following code- print(bool(0), bool(1.11), bool(-5)) code example
Example: python bool()
# Returns the boolean value of the specified object
x = bool(1) # outputs True
# Returns the boolean value of the specified object
x = bool(1) # outputs True