一、函数说明 def decodehex(s): # 转成从左到右,两个为一组的列表 s = [s[i:i+2] for i in range(0, len(s), 2)] # 把十六进制的字符串列表 … Continue reading 用法介绍hex.decodehex函数(深入理解hex.decodehex)
一、函数说明 def decodehex(s): # 转成从左到右,两个为一组的列表 s = [s[i:i+2] for i in range(0, len(s), 2)] # 把十六进制的字符串列表 … Continue reading 用法介绍hex.decodehex函数(深入理解hex.decodehex)