概述
refs:
http://blog.csdn.net/u011546806/article/details/45370069
str = "7B 7D 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 32 0F 10 0A 4B 4C 00 00 00 00 00 00 00 00 3F 21"
def GetCmd(hexString):
hexString = hexString.replace(" ", "");
if ((len(hexString) % 2) != 0):
hexString += " ";
bits = ""
for x in range(0, len(hexString), 2):
bits += chr(int(hexString[x:x+2], 16))
return bits;
最后
以上就是火星上草莓为你收集整理的python 16进制string 转string的全部内容,希望文章能够帮你解决python 16进制string 转string所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复