gpt4 book ai didi

python - 将字节字符串拆分为行

转载 作者:IT老高 更新时间:2023-10-28 21:38:30 28 4
gpt4 key购买 nike

如何将字节字符串拆分为行列表?

在 python 2 中我有:

rest = "some\nlines"
for line in rest.split("\n"):
print line

为了简洁起见,上面的代码被简化了,但是现在经过一些正则表达式处理后,我在 rest 中有一个字节数组,我需要迭代这些行。

最佳答案

没有理由转换为字符串。只需提供 split 字节参数。用字符串分割字符串,用字节分割字节。

>>> a = b'asdf\nasdf'
>>> a.split(b'\n')
[b'asdf', b'asdf']

关于python - 将字节字符串拆分为行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13857856/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com