hushaojun

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

 

分类:

技术点:

相关文章:

  • 2021-11-17
  • 2022-02-22
  • 2022-12-23
  • 2022-01-09
  • 2021-11-17
  • 2021-11-17
  • 2021-07-01
猜你喜欢
  • 2021-11-17
  • 2021-09-02
  • 2022-01-05
  • 2021-12-13
  • 2021-06-18
相关资源
相似解决方案