Python: not, not equal
Self-tutoring about Python: the tutor mentions not and not equal.
Python’s not operator is the word not, rather than !. Yet, Python’s not equal operator is !=.
Therefore, to test (in)equality, there seem two choices:
- x!=y
- not (x==y)
Source:
Jack of Oracle Tutoring by Jack and Diane, Campbell River, BC.