python中的进制转换函数 python中的进制转换函数 十进制转二进制bin() print(bin(10)) # ‘0b1010’ 0b就代表二进制数 十进制转八进制oct() print(oct(10)) # ‘0o12’ … 继续阅读 python中的进制转换函数