Python中python对象和json字符串怎么互转

1.python对象转成json字符串

使用json.dumps()方法将python对象转成json字符串

import json

data = {
        'name': 'John',
        'age': 30,
        'city': 'New York'
}
json_string = json.dumps(data)

# 打印
print(json_string)

2.json字符串转成python对象

json.loads()方法可以将json字符串转换为python对象。

import json

json_string = '{"name": "John", "age": 30, "city": "New York"}'

data = json.loads(json_string)

# 打印或使用Python对象
print(data)
print(data['name'])

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: