我正在编写代码,从网站中获取一些文本然后,使用for循环我接受我感兴趣的文本的一部分。我可以打印此文本,但我想知道如何将其发送到列表供以后使用。到目前为止,我写的代码就是这个代码。
$location.path('/page1');
答案 0 :(得分:0)
只需使用append
:
lines = []
for line in url_text:
if line.startswith('>'):
lines.append(line) # or whatever else you wanted to add to the list
print line[line.index(' ') : line.index('OS')]
编辑:在旁注中,python可以直接在文件上循环 - 如:
url_text = filehandle.readlines()
for line in url_text:
pass
# can be shortened to:
for line in filehandle:
pass