python中是否有类似于R中的dput()函数的函数?
有几种将Python对象序列化为文件的选项:
json.dump()
import json
json
pickle.dump()
不常见:
shelve
dict
marshal.dump()