标签:数据 false bsp 运行 font 十六进制 方法 lin 布尔
a = 1 print(a.bit_length()) b = 8 print(b.bit_length()) c = 128 print(c.bit_length()) 输出结果: 1 4 8
a = 15 v1 = a.to_bytes(2, byteorder=‘big‘) v2 = a.to_bytes(2, byteorder=‘little‘) v3 = a.to_bytes(10, byteorder=‘big‘) v4 = a.to_bytes(10, byteorder=‘little‘) print(v1) print(v2) print(v3) print(v4) 运行结果: b‘\x00\x0f‘ b‘\x0f\x00‘ b‘\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f‘ b‘\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00‘
[ps:\x开头则表示是十六进制]
标签:数据 false bsp 运行 font 十六进制 方法 lin 布尔
原文地址:http://www.cnblogs.com/xiaofeiweb/p/6848565.html