当前位置:主页 > 软件编程 > Python代码 >
时间:2020-11-07 00:06:45 | 栏目:Python代码 | 点击:次
将socket收到的16进制转成字符串
def hex_to_str(b): s = '' for i in b: s += '{0:0>2}'.format(str(hex(i))[2:]) return(s)