<
Less than
<=
Less than or Equal to
==
Equal to
>=
Greater than or Equal to
>
Greater than
!=
Not equal
<=
Less than or Equal to
==
Equal to
>=
Greater than or Equal to
>
Greater than
!=
Not equal
>>> 2.0 >= 3
False
>>> 2.0 >= 2
True (The same value is why this is true)
Can you compare strings using Comparison Operators?
Yes
Each character as a numeric value that we can find using the?
[ord] function