I found this unique behavior of python interpreter while assigning the values with prefix 0. See the screenshots below.
the error raised only if after 0 you have either 8 or 9 while assigning
like :
>>a=08
File "<stdin>", line 1
a=08
^
SyntaxError: invalid token
>>a=09
File "<stdin>", line 1
a=09
^
SyntaxError: invalid token
but for the rest of the digits its working correctly.
Can anybody explains why this error occured? Thanks in advance.
