📜  pickle.load python 代码示例

📅  最后修改于: 2022-03-11 14:45:29.050000             🧑  作者: Mango

代码示例2
import pickle
# dump : put the data of the object in a file
pickle.dump(obj, open(file_path, "wb"))
# dumps : return the object in bytes
data = pickle.dump(obj)