gpt4 book ai didi

Python:逐行读取文本变量(不是文件)

转载 作者:行者123 更新时间:2023-12-04 01:52:22 25 4
gpt4 key购买 nike

我有:

url="https://mywebpage.com/content"
text=requests.get(url,stream=True).text

for line in text:
print "Line "+line

我将每个字母放在不同的行(而不是行)中。
我也不能使用迭代器 req.iter_lines 因为我需要多次处理结果以寻找不同的数据。

任何提示?

最佳答案

您应该使用 splitstrip , 如果你有 windows 风格的换行符 ( \r )

for line in text.split('\n'):
line = line.strip('\r')
print ("Line "+line)

关于Python:逐行读取文本变量(不是文件),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52405039/

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