import json
# 列表寫入檔案
# 測試list
risk_list =[,
]# 將資料寫入檔案
file
=open
('risk.json'
,'w'
)for i in risk_list:
json_i = json.dumps(i)
file
.write(json_i+
'\n'
)file
.close(
)# 從檔案中讀取資料
risk_result =
with
open
('risk.json'
,'r'
)as f:
# 讀取資料並分割。 最後乙個為空,所以去除
risk_new_list = f.read(
).split(
'\n')[
:-1]
for x in risk_new_list:
json_x = json.loads(x)
f.close(
)print
("原始資料是:"
, risk_list)
print
("結果資料是:"
, risk_result)
json讀寫檔案
jsonc 寫配置檔案比較簡單,並且解析配置檔案也比較省事。寫配置檔案 cpp view plain copy include include include include include inc json.h define config file config.json typedef stru...
php讀寫json檔案
生成乙個php陣列 data array 0 array a orange b banana 1 array 1,2,3,4,5,6 2 array first 5 second third data 3 id 30 data 3 content phperwei31 訪問二維陣列的方法 echo ...
python 讀寫json檔案
以字串的形式進行json讀寫 函式功能 json str json.dumps 要寫入的字典表 將字典表寫入json字串 json data json.loads json str 將json字串讀為字典表 import json json的true,false,null寫法和字典表 true,fa...