使用Python迭代来自JSON响应的特定值可以通过以下步骤实现:
import json
response = '{"name": "John", "age": 30, "city": "New York"}'
data = json.loads(response)
for key, value in data.items():
if key == "name" or key == "age":
print(key + ": " + str(value))
这将输出:
name: John
age: 30
请注意,以上链接仅供参考,具体产品选择应根据实际需求进行评估和决策。
领取专属 10元无门槛券
手把手带您无忧上云