Python字符串转十六进制进制互转

时间:2019-07-19 00:43:30   收藏:0   阅读:966

 

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( )]])

 

原文:https://www.cnblogs.com/sea-stream/p/11210347.html

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