我必须下载文件,我看到我可以使用“urllib2”来完成。
response = urllib2.urlopen(URL)
file=response.read()
但是,我无法逐行阅读。
这是我试过的:
response = urllib2.urlopen(URL)
for line in response.read():
#do stuff
所有文件都是一行。 原始文件被新行拆分。
有人可以告诉我如何将文件更改为原始文件吗?
答案 0 :(得分:1)
只需拆分输出:
response = urllib2.urlopen(URL)
lines=response.read().splitlines()