Given a number ,
noct( returns a
string containing an octal (base 8) representation of n). Consistent with
Python's convention that any number starting with a zero is
considered octal, the result of this function will always have
a leading zero.
n
>>> oct(0) '0' >>> oct(127) '0177'