Boolean values
Boolean values gives you a True or False output based on the
statement that is provided to the compiler.
print(175 > 984)
print(10 == 74)
print(1 < 9)
Output
False
False
True
Boolean values gives you a True or False output based on the
statement that is provided to the compiler.
print(175 > 984)
print(10 == 74)
print(1 < 9)
Output
False
False
True