In the Python interpreter, 08 and 09 seem invalid. Example:
>>> 01
1
>>> 02
2
>>> 03
3
>>> 04
4
>>> 05
5
>>> 06
6
>>> 07
7
>>> 08
  File "<stdin>", line 1
    08
     ^
SyntaxError: invalid token
>>> 09
  File "<stdin>", line 1
    09
     ^
SyntaxError: invalid token
As you can see, only 08 and 09 don't seem to work. Are these special values or something?
 
     
     
    