运行 ❯
获得你
自己的 Python
服务器
×
更改方向
更改主题,深色/浅色
进入 Spaces
import json # some JSON: x = '{ "name":"John", "age":30, "city":"New York"}' # parse x: y = json.loads(x) # the result is a Python dictionary: print(y["age"])
30