I'm a beginner in python and I'm trying to use a octal number in my script, but when I try it, it returns me that error:

>>> a = 010
SyntaxError: invalid token (<pyshell#0>, line 1)
>>> 01
SyntaxError: invalid token (<pyshell#1>, line 1)

There's something wrong with my code? I'm using Python3 (and reading a python 2.2 book)

link|improve this question
There may be something wrong with your Python installation or the shell you are using. Try the same thing at shell.appspot.com and see if you get the same errors. – Gene Goykhman Dec 3 '09 at 5:43
feedback

2 Answers

up vote 13 down vote accepted

Try 0o10, may be because of python 3, or pyshell itself.

PEP says,

octal literals must now be specified with a leading "0o" or "0O" instead of "0";

http://www.python.org/dev/peps/pep-3127/

link|improve this answer
1  
I wish every language required this for octal numbers; how stupid was using a lead 0. Now if we can just get support for 0sNNN (for sexagesimal) and put base-64 numbers into our code. – Software Monk Dec 3 '09 at 7:15
Think of the possibilities for magic constants... no longer being constrained to 0xdeadbeef, etc. :o – Andrew Keeton Dec 3 '09 at 8:55
Thank S.Mark, using the "Oo" works just fine. – Rafael Dec 3 '09 at 16:59
@Rafael I think you mean "0o", not "Oo" :) – jchl Mar 9 '11 at 10:41
feedback

What is the version of Python? At least Python 2.6 process such statements correctly:

a=010
print a
8

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.