== - Equal to (also sometimes written as just = )
!= - Not equal to
> - Greater than (meaning the value on the left is larger then the one on the right)
< - Less than (meaning the value on the left is smaller than the one on the right)
Some examples of comparison operators:
10 > 8
10 < 12
X = 5
y != 6

