I found, this in Python3:
>>> 00 + 00 == 00
True
While:
>>> 01 + 01 == 02
File "<input>", line 1
01 + 01 == 02
^
SyntaxError: invalid token
Why does the first example works while the second one fails? Should't it be better if both failed or both worked?