python簡說(十)json模組

2022-07-26 23:54:12 字數 513 閱讀 9579

常用模組:

乙個python檔案就是乙個模組

1、標準模組,python自帶的

2、第三方模組,需要安裝

3、自己寫的python檔案

json,就是乙個字串

1.json轉為字典

json_str = '''

'''res = json.loads(json_str) #把字串(json串)轉成字典

2.字典轉為json串

dic=

res=json.dumps(dic,ensure_ascii=false,indent=4)

3.自己讀

f = open('user.json',encoding='utf-8')

json.load(f)

4.自己寫

fw = open('newuser.json','w',encoding='utf-8')

dic=

json.dump(dic,fw,indent=4,ensure_ascii=false)

python簡說(十二)time模組

1.時間戳 print int time.time 2.取當前格式化好的時間 time.strftime y m d h m s 3.時間戳轉為格式化好的時間 time1 time.gmtime int time.time 把時間戳轉成時間元組 res time.strftime y m d h m...

json模組簡析

使用json模組處理json資料首先要先導入。import json1,它是處理字典與json字串之間的轉換問題,字典是一種資料結構,他有很多方法可供呼叫,而json只是一種特定格式的資料,json字串是符合json格式的字串。字典裡key和value的值的型別可以是任何型別,一般使用單引號,但不強...

Python 讀寫 json 資料 json模組

table of contents json 格式是雙引號 json.dumps 將 python 格式轉字元 json.loads 將字元轉 python 格式 如果你要處理的是檔案而不是字串 json.dump 寫入本地檔案 json.load 讀取本地檔案 import jsonpath im...