gistlib
The operator used to check whether two values are not equal in Python is !=. For example:
!=
main.pya = 5 b = 10 if a != b: print("a is not equal to b") 57 chars5 lines
a = 5 b = 10 if a != b: print("a is not equal to b")
gistlibby LogSnag