如果我们强行打开它,我使用这种方法创建的腌制文件在文本编辑器中是可读的,
import pickle,os
print os.path.split(__file__)[0]
storloc= os.path.normpath(os.path.join(os.path.split(__file__)[0],"test.pkl"))
newD={"String":"this is the world", "int":1,"float":1.5}
print newD
print storloc
d = open(storloc, 'wb')
pickle.dump(newD,d)
d.close()
如何在任何文本编辑器中使腌制文件(test.pkl)不可读?