There's some confusion here -- pedantically (and with computers it's always best to be pedantic;-), there are no "octal numbers", there are strings which are octal representations of numbers (and other strings, more commonly encountered, which are their decimal representations, hexadecimal representations). The underlying numbers (integers) are a totally distinct type from any of the representations (by default their decimal representation is shown) -- e.g.:
>>> 2 + 2
4
>>> '2' + '2'
'22'
the quotes indicate strings (i.e., representations) -- and note that, per se, they have nothing to do with the numbers they may be representing.
So, one way to interpret your question is that you want to convert an octal representation into a decimal one (etc) -- that would be:
>>> str(int('0671', 8))
'441'
note the quoted (indicating strings, i.e., representations). int(s, 8)
converts the string s
into an integer as an octal representation (or raises an exception if the conversion can't work). str(n)
produces the string form of number n
(which, as I mentioned, is by default a decimal representation).