欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

hexadecimal string to byte array in python python 

程序员文章站 2024-03-17 23:58:22
...
>>> hex_string = "deadbeef"
Convert it to a string (Python ≤ 2.6):

>>> hex_data = hex_string.decode("hex")
>>> hex_data
"\xde\xad\xbe\xef"
or since Python 2.7 and Python 3.0:

>>> bytearray.fromhex(hex_data)
bytearray(b'\xde\xad\xbe\xef')
相关标签: python