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)