Update test_dumps03.py

This commit is contained in:
p15670423 2022-10-11 11:50:19 +08:00 committed by Gitea
parent 7985a6b07f
commit 4188bb507c
1 changed files with 1 additions and 13 deletions

View File

@ -1,13 +1 @@
import json
data = {
'name' : 'myname',
'age' : 100,
}
# separators:是分隔符的意思参数意思分别为不同dict项之间的分隔符和dict项内key和value之间的分隔符后面的空格都除去了.
# dumps 将python对象字典转换为json字符串
json_str = json.dumps(data, separators=(',', ':'))
print(type(json_str), json_str)
# loads 将json字符串转化为python对象字典
pyton_obj = json.loads(json_str)
print(type(pyton_obj), pyton_obj)
print('1111')