迭代包含嵌套元素的dict对象

时间:2017-07-29 05:12:40

标签: python dictionary iteration

Python 5.6

以下是使用地理编码模块调用的结果

import geocoder
anaddress = 'State Street, Hood River, OR'
g = geocoder.arcgis(anaddress)
d = g.geojson
print(d)
{'geometry': {'type': 'Point', 'coordinates': [-121.52181774656506, 45.707876183969184]}, 'type': 'Feature', 'properties':
 {'provider': 'arcgis', 'ok': True, 'location': '1037 State St, Hood River, OR', 'lat': 45.707876183969184, 'lng': -121.52
181774656506, 'bbox': [-121.52281774656507, 45.706876183969186, -121.52081774656506, 45.70887618396918], 'encoding': 'utf-
8', 'status': 'OK', 'address': '1037 State St, Hood River, Oregon, 97031', 'status_code': 200, 'confidence': 9}, 'bbox': [
-121.52281774656507, 45.706876183969186, -121.52081774656506, 45.70887618396918]}

如何迭代这个结构并将其打印出来?

1 个答案:

答案 0 :(得分:1)

你的目标是,只打印结构或解析它?

如果您想要很好地打印输出,请尝试使用

from pprint import pprint
pprint(d)

这将为您提供精美的印刷结构。 为了解析这个问题,您可以像使用键和值的任何字典对象一样进行解析。