The 6 comparison operators are:
== (equal to)
!= (not equal to)
< (less than)
> (greater than)
<= (less than or equal to, ≤)
>= (greater than or equal to, ≥)
You can use == to see if two Strings are the same or != to see if two Strings are different.
You can use symbols like < and > as well, we won't be explaining how they work here.
You may be familiar with a statement like this:
5 < x <= 8 (x is greater than 5 and less than or equal to 8)
Conditional statements like this are allowed in Python. (Note, they are not allowed in all languages, including Java.)