美文网首页
python中string和十六进制、二进制互转

python中string和十六进制、二进制互转

作者: 忘了呼吸的那只猫 | 来源:发表于2020-07-08 21:18 被阅读0次
def str_to_hex(s):
    return ' '.join([hex(ord(c)).replace('0x', '') for c in s])

def hex_to_str(s):
    return ''.join([chr(i) for i in [int(b, 16) for b in s.split(' ')]])

def str_to_bin(s):
    return ' '.join([bin(ord(c)).replace('0b', '') for c in s])

def bin_to_str(s):
    return ''.join([chr(i) for i in [int(b, 2) for b in s.split(' ')]])

相关文章

网友评论

      本文标题:python中string和十六进制、二进制互转

      本文链接:https://www.haomeiwen.com/subject/bkbhcktx.html