1魂拦、16進(jìn)制 數(shù)組(列表)
ind = [0x5a, 0x01, 0x02, 0x03, 0x04,0xdc]
print('ind:',ind)
輸出結(jié)果:
ind: [90, 1, 2, 3, 4, 220]
2盔性、16進(jìn)制 字符串 轉(zhuǎn) 列表
newKey = bytes().fromhex(key)
print('newkey:', newKey)
print('byteArr',bytearray(newKey))
print([hex(x) for x in bytes(newKey)])
mykey = [hex(x) for x in bytes(newKey)]
輸出結(jié)果:
newkey: b'\x124Vx'
byteArr bytearray(b'\x124Vx')
['0x12', '0x34', '0x56', '0x78']
3眠屎、獲取16進(jìn)制列表中的值:
如上2中:print('key2:',mykey[2])
輸出結(jié)果:
key2: 0x56
其實(shí)我真正想要得到的是 10進(jìn)制數(shù)蕴轨,故第二種方式需要16進(jìn)制轉(zhuǎn)10進(jìn)制欠动。
int(mykey[2],16)