测试第二种合并方式 #16

Merged
p79813206 merged 5 commits from jd003 into develop 2022-10-12 10:34:45 +08:00
1 changed files with 13 additions and 0 deletions
Showing only changes of commit df13715203 - Show all commits

13
test_dumps01.py Normal file
View File

@ -0,0 +1,13 @@
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)