我想将字典写入文件。代码是:
fs = open( store_file , "w" )
for k in store_dic:
temp_line = k + " " + store_dic[k] + "\n"
fs.write( temp_line )
logger.info( "store_record " + store_file + " " + temp_line[:-1] )
fs.close
如您所见,我同时遍历文件的字典store_dic
和写入文件。因为我会每 6 秒调用一次这段代码,有什么办法可以改进吗?
谢谢你。