Home » Backend » Python » oct
This oct() function returns an integer converted into an octal string.
oct()
oct(integer)
Here,
>>> oct(10) '012' >>> oct(256) '0400' >>> oct(4294967296L) '040000000000L'