Python3 编码hexstring到ascii详解

时间:2019-01-16 12:58:05   收藏:0   阅读:571

Hex-->Ascii

#coding =utf-8
from binascii import a2b_hex

h =6a6a6a6a6a6a6a6a6a
s = a2b_hex(h)
print(s)

 

原文:https://www.cnblogs.com/Aiue/p/10276285.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!