首页 > TAG信息列表 > c3ff641ecfc1

【转】python系列之:str、byte、hex相互转换(全)

python系列之:str、byte相互转换 一、byte转化为str二、str转化为byte三、str、byte相互转换完整代码四、byte转化hex五、hex转化byte六、byte、hex相互转换完整代码 一、byte转化为str byte_data = b'c3ff641ecfc1' str_data = str(byte_data,encoding = "utf-8") print