['\x00\x00\x00\x00\x01\x00\x00\x00\x00']提取其中的数字元素形成列表
时间: 2023-11-29 16:47:01 浏览: 32
将数字从字符串中提取
3星 · 编辑精心推荐
可以使用bytes对象的fromhex()方法将引用内容转换为bytes类型,然后使用列表推导式和ord()函数将bytes类型转换为数字列表:
```python
s = '\x00\x00\x00\x00\x01\x00\x00\x00\x00'
lst = [ord(i) for i in bytes.fromhex(s)]
print(lst) # 输出:[0, 0, 0, 0, 1, 0, 0, 0, 0]
```
阅读全文