欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python写json示例

程序员文章站 2024-01-11 08:33:52
...
#!/usr/bin/python

import json

source = '{"name":"polyahu", "type":"title"}'
f = open('./json.data')
j = json.loads(source)
r = json.load(f)
s = json.dumps(j)

print "j's type",
print type(j)
print "s's type",
print type(s)



json.loads()和json.dumps()是将str类型和dict类型互相转换。
相关标签: python