标签: python full-text-search google-places-api
url ='https://maps.googleapis.com/maps/api/place/radarsearch/json?location=%.7f,%.7f&radius=500&types=food|cafe&keyword=vegetarian&key=API_KEY'%(纬度,经度)
resp = urllib.urlopen(url)
a = resp.read()
打印
如何读取此print语句的输出,是否有其他方法可将其转换为可读格式。谢谢