Other operators
Like Python, except @ is not supported.
Supported
+-*///**%<<>>|^&
All of these are supported for augmented assignment too (i.e. +=, -=, ^=, etc.), except for floor division (//=) and pow (**=) are not.
Floor division and pow
- When you use
a ** banda // b, the Py++ transpiler translates them tostd::pow(a, b)andpypp::py_floor_div(a, b)respectively.