Module 0.2.0 - Booleans & Conditionals
0.2.1 - Boolean Values
True - value exists and is correct
False - value doesn't exist and is wrong
None - value is absent0.2.2 - Boolean Operators
== - equal to
!= - not equal to
< - less than
> - greater than
<= - less than or equal to
>= - greater than or equal toprint(True == True)
>>> True
print(True == False)
>>> False
print(1 == 2)
>>> False
print(5 <= 10)
>>> True