How to write a list to file and then read it back into memory in Python

1 Answer

0 votes
import pickle

lang = ["python", "c", "c++", "c#", "java"]

pickle.dump(lang, open('d:\data.pkl', 'wb'))

obj = pickle.load(open('d:\data.pkl', 'rb'))

print(obj)


'''
run:

['python', 'c', 'c++', 'c#', 'java']

'''

 



answered Dec 22, 2017 by avibootz
...