sea-stream

 

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

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-01
  • 2022-12-23
  • 2021-11-17
  • 2022-12-23
  • 2021-12-05
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-19
  • 2021-09-27
  • 2022-03-05
  • 2022-02-17
相关资源
相似解决方案