将数字 15 转换为八进制值:
x = oct(15)print(x)
x = oct(15)
print(x)
oct() 函数把整数转换为八进制字符串。
oct()
Python 中的八进制字符串以 0o 为前缀。
oct(int)