+ 1
What is 'is is not' used for?
operators
2 Answers
+ 11
language : Python
is is not is almost similar to != operator
If values of two operands are not equal, then condition becomes true.
also is is not is an identity test where as
!= is equality test ...
check out this đ for more
https://stackoverflow.com/questions/2209755/python-operation-vs-is-not
+ 9
language?