python讀寫json檔案方法示例

2021-08-28 19:24:35 字數 1187 閱讀 4584

python寫入json檔案

首先,我們將python建立乙個字典型別的資料data,打包為json字串格式

接下來,我們將打包好的json_str寫入檔案:

json_str = json.dumps(data)

with

open

('data.txt'

,'a'

)as f:

# 『a』表示在不刪除原資料的情況下在檔案末尾寫入資料

f.write(json_str)

f.write(

'\n'

)# 如果迴圈寫入多個json資料需要加乙個換行符

我們來看看寫入效果:

這樣,我們就成功將資料寫入txt檔案啦!

python讀取json檔案

首先,我們來看看json資料檔案:

# 列印

print

(temp[

'name'])

# 取出特定鍵的值

來看看執行結果:

python 讀寫json檔案

以字串的形式進行json讀寫 函式功能 json str json.dumps 要寫入的字典表 將字典表寫入json字串 json data json.loads json str 將json字串讀為字典表 import json json的true,false,null寫法和字典表 true,fa...

php 讀寫json檔案及修改json的方法

例項如下所示 追加寫入使用者名稱下檔案 code 001 動態資料 json string file get contents text.json 程式設計客棧從檔案中讀取資料到php變數 data json decode json string,true 把json字串轉成php陣列 data c...

python讀寫Json檔案記錄

在這裡記錄一下自己讀寫json檔案的問題 讀取多行的json檔案 直接讀取會出錯,可以逐行讀取 datas open file,r encoding utf 8 readlines for line in datas data json.loads line 寫入json檔案,主要是解決中文亂碼的問...