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


 1 def str_to_hex(s):
 2     return ' '.join([hex(ord(c)).replace('0x', '') for c in s])
 3 
 4 def hex_to_str(s):
 5     return ''.join([chr(i) for i in [int(b, 16) for b in s.split(' ')]])
 6     
 7 def str_to_bin(s):
 8     return ' '.join([bin(ord(c)).replace('0b', '') for c in s])
 9     
10 def bin_to_str(s):
11     return ''.join([chr(i) for i in [int(b, 2) for b in s.split(' ')]])

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM