保存數據到json文件,並讀取json文件的方法

import json #number = [1,2,3,4,5] ipt = input('enter your name') file_name = 'number.json' with open(file_name, 'w') as file_object: json.dump(ipt, file_object) #函數json.dump()接受兩個實參:要儲存的數據以及能夠用於存儲
相關文章
相關標籤/搜索