In [476]: 3 + 5
Out[476]: 8
In [477]: 3 +++++++++++++++++++++ 5
Out[477]: 8
In [478]: 3 + + + + + + + + + + + 5
Out[478]: 8
In [479]: 3 +++ --- +++ --- +++ 5
Out[479]: 8
Why there is no SyntaxError: invalid syntax
or TypeError: bad operand type for unary +
error?
I know this handled in compile process, but how it works?