jaggy
answered Sep 18 '21 00:00
There is no "notEqual" method in Python. so usage of i.notEqual(j) is not allowed in Python.
use != operator instead of "notEqual" method in your code.
so your code for not equal to check
ab=102
bc=134
print(i!=j)
!= return True or False
I don't know where you get that 'notEqual' method is used to check two integer value which is "not equal " or not in Python.