if not equal to in python code example
Example 1: python not equal to
1 != 2 # The 'not equal to' symbol is !=
Example 2: not equal python
if a != b:
pass
if not a == b:
pass
Example 3: not equal to in python
>>> 'ABC' != 'ABC'
False
>>> 1 != 1
False
>>> {1: None, 2: None} != 10
True
>>> 1 != 1.0
False
Example 4: pyton not equal
(a != b) #testing for not equel