How can I use pickle to save a dict?

前端 未结 9 2338
说谎
说谎 2020-11-22 06:45

I have looked through the information that the Python docs give, but I\'m still a little confused. Could somebody post sample code that would write a new file then use pickl

9条回答
  •  没有蜡笔的小新
    2020-11-22 07:36

    import pickle
    
    dictobj = {'Jack' : 123, 'John' : 456}
    
    filename = "/foldername/filestore"
    
    fileobj = open(filename, 'wb')
    
    pickle.dump(dictobj, fileobj)
    
    fileobj.close()
    

提交回复
热议问题