Python Return Boolean Value
Functions can Return a Boolean
You can create functions that returns a Boolean Value:
Example
Print the answer of a function:
def myFunction() :
return True
print(myFunction())
Try it Yourself »
You can execute code based on the Boolean answer of a function:
Example
Print "YES!" if the function returns True, otherwise print "NO!":
def myFunction() :
return True
if myFunction():
print("YES!")
else:
print("NO!")
Try it Yourself »
Python also has many built-in functions that returns a boolean value, like the
isinstance()
function, which can be used to determine if an object is of a certain data type: