Comparisons:
*
Not equal to
*
Equal To
x != y
This returns True if x and y are not equal and otherwise returns False.
12 != 1
# True
12 != '12'
# True
'12' != '12'
# False