最佳答案
我试图理解它是否有意义,采取一个列表的内容,并将其附加到另一个列表。
我通过一个循环函数创建了第一个列表,它将从文件中获取特定的行,并将它们保存在一个列表中。
然后使用第二个列表保存这些行,并在另一个文件上开始一个新的循环。
我的想法是在for循环完成后获取列表,将其转储到第二个列表中,然后开始一个新的循环,将第一个列表的内容再次转储到第二个列表中,但要追加它,因此第二个列表将是在我的循环中创建的所有较小列表文件的总和。只有在满足某些条件时,才需要添加列表。
它看起来像这样:
# This is done for each log in my directory, i have a loop running
for logs in mydir:
for line in mylog:
#...if the conditions are met
list1.append(line)
for item in list1:
if "string" in item: #if somewhere in the list1 i have a match for a string
list2.append(list1) # append every line in list1 to list2
del list1 [:] # delete the content of the list1
break
else:
del list1 [:] # delete the list content and start all over
这有意义吗,还是我应该走另一条路?
我需要一些有效的,不会占用太多的周期,因为日志的列表很长,每个文本文件是相当大的;所以我认为这些清单可以满足这个目的。