Comparison operators
Same as Python
Supported
==!=<><=>=innot inisnot is
Note: when you use a is b or a is not b, the Py++ transpiler puts this as &a == &b and &a != &b in the generated C++ code.
Same as Python
==!=<><=>=innot inisnot isNote: when you use a is b or a is not b, the Py++ transpiler puts this as &a == &b and &a != &b in the generated C++ code.