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')
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')
上一篇: std::map 博客分类: c++
推荐阅读
-
hexadecimal string to byte array in python python
-
hexadecimal string to byte array in python python
-
Python中列表list以及list与数组array的相互转换实现方法
-
Python编程之string相关操作实例详解
-
python之Character string(实例讲解)
-
Python编程之string相关操作实例详解
-
Python 基础之字符串string详解及实例
-
Python 中开发pattern的string模板(template) 实例详解
-
python之Character string(实例讲解)
-
Python中列表list以及list与数组array的相互转换实现方法