将for-loop元素添加到列表中

时间:2016-01-27 23:07:30

标签: list python-2.7 for-loop

我正在编写代码,从网站中获取一些文本然后,使用for循环我接受我感兴趣的文本的一部分。我可以打印此文本,但我想知道如何将其发送到列表供以后使用。到目前为止,我写的代码就是这个代码。

$location.path('/page1');

1 个答案:

答案 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