Python 内置函数
例如:
将数字12转换为八进制值:
x = oct(12) print(x)
oct()函数将整数转换为八进制字符串。
oct()
Python中的八进制字符串以0o为前缀。
0o
oct(int)
参数
描述
int
整数