Basic conditions in Python:
< (one less than the other)
> (one more than the other)
<= (one is less than or equal to the other)
>= (one is greater than or equal to the other)
!= (one is not equal to the other)
== (one is equal to the other)
Examples of using conditions:
print(5 > 4)
True #result
print(‘cat’==’dog’)
False #result