數據序列化

序列化三種方式:python data = {'one':'one','two':'two'}土方法(文件讀寫): 序列化寫入(文件寫入按照打開格式,默認使用str,'b'模式使用encod()):json with open('data','w') as f: f.write(str(data))數據讀取: with open('data','r') as f: data = e
相關文章
相關標籤/搜索