with open('try json.json', mode='a+') as f: json.dump(dic, f) # 將dict轉為str,並寫入json檔案中 f.seek(0) data = json.load(f) # 從json檔案中讀取資料 print ...
確定! 回上一頁