<languages />
❮内置功能
将数字12转换为八进制值:
x = oct(12)
The oct() 函数将整数转换为八进制字符串。
oct()
Python中的八进制字符串以开头 0o .
0o
oct(int)