爬坑记录2018-12-18 本文已影响0人 我是来捕鱼的 1、bytes与hex之间的转换 hex转化为bytes data = bytes.fromhex(xxx) 再编码为utf-8 data.decode("utf-8") bytes转换为hex data.hex()