Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道 Python 有很多方法可以从文件中存储和读取数据,所以我想知道以上 4 种的最佳做法是什么,以及每种方法最适用的时间。
另外,请让我知道是否还有其他我应该注意的模块/功能。
好吧,我确定您已经阅读了 python 中上述命令的文档,但我认为您在使用它时犯了一个错误。对于您要求的文件打开,在一段时间内打开就足够了。
json -> 处理字符串,列表及其方法的转储并以它们的 json 格式加载。pickle -> 序列化数据tempfile -> 创建临时文件/目录。
但正如我之前所说,如果不需要特殊处理,最好使用打开、写入命令来处理要转储的文件(命令读/写)。
问候。