So, I'm making a python cheat sheet for myself, and when I started covering comparison operators, I noticed these two:
a = 1
b = 2
if a != b:
print("Dunno")
if a <> b:
print("Dunno")
I'm using python 2.7 and was curious if there's a difference between the two operators?