立即学习:https://edu.csdn.net/course/play/26755/340112?utm_source=blogtoedu
二进制:n=0b11101
八进制:n=0o127
十六进制:n=0xF15
2、进制之间的转换
十进制zh转为2进制:bin(120)
10-16:hex(54321)
2-10:int('10110',2)2代表2进制
16-10:int('F35AE',16)16代表16进制
16-2:bin(0XF012A)
2-16:hex(0b11011)
10-8:oct(134)
8-10:int('3213',8)
来源:CSDN
作者:小白进击
链接:https://blog.csdn.net/qq_35504363/article/details/104205916