美文网首页python的记录
Python 字符串和16进制的相互转换

Python 字符串和16进制的相互转换

作者: JP0001 | 来源:发表于2022-03-16 15:04 被阅读0次
        def str_to_hex(self,s):
            # 文本转16进制 
            return ' '.join([hex(ord(c)).replace('0x', '') for c in s])
    
        def hex_to_str(self,s):
            #16进制转为文本
            return ''.join([chr(i) for i in [int(b, 16) for b in s.split(' ')]])
    

    相关文章

      网友评论

        本文标题:Python 字符串和16进制的相互转换

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