我想知道如何将一个非常大的文件放入列表中?我的代码只适用于小文件:
def populate_director_to_movies(f):
'''
(file open for reading) -> dict of {str: list of str}
'''
movies = []
line = f.readline()
while line != '':
movies.append(line)
line = f.readline()
当我将它用于非常大的文本文件时,它只是一个空白区域。