How to represent the Boolean "true" and "false" in Python

1 Answer

0 votes
# In Python, Boolean values are represented using the built‑in literals:
# True
# False

# True behaves like 1
# False behaves like 0

is_active = True     
is_finished = False  

print("is_active =", is_active)
print("is_finished =", is_finished)

# Boolean expression example
result = (10 > 3)
print("10 > 3 evaluates to:", result)


'''
run:

is_active = True
is_finished = False
10 > 3 evaluates to: True

'''

 



answered 5 days ago by avibootz
edited 5 days ago by avibootz
...