import pickle # write python dict to a file mydict = {'a': 1, 'b': 2, 'c': 3} output = open('myfile.pkl', 'wb') pickle.dump(mydict, ...
確定! 回上一頁