jsonobject获取key和value
时间: 2023-04-29 22:04:57 浏览: 123
使用JSONObject生成和解析json的方法
可以使用jsonobject.get("key")来获取对应key的value.
例如:
```
import json
data = {
"name": "John Smith",
"age": 35,
"city": "New York"
}
json_data = json.dumps(data)
json_object = json.loads(json_data)
print(json_object.get("name")) # Output: "John Smith"
print(json_object.get("age")) # Output: 35
print(json_object.get("city")) # Output: "New York"
```
也可以使用jsonobject["key"]获取对应key的value.
例如:
```
print(json_object["name"]) # Output: "John Smith"
print(json_object["age"]) # Output: 35
print(json_object["city"]) # Output: "New York"
```
另外,也可以通过遍历jsonobject来获取所有的key和value:
```
for key in json_object:
print(key + ": " + str(json_object[key]))
```
最后输出结果类似于
```
name: John Smith
age: 35
city: New York
```
阅读全文