I am reading the file using readlines() function in python and storing the data to variable. it is worked fine with small text file, but getting the "Memory error" for big sized file.
Is there something we can use instead of readline() and store the data to varibale ass list?
with open("some_test.txt") as fp:
line= fp.readlines()
Where Line is the List