我很困惑为什么在尝试从 json 文件访问对象数组时必须使用 `.get('key')
req = urllib2.Request("http://website.com/entertainment/entertainment_news.json", None)
opener = urllib2.build_opener()
f = opener.open(req)
stories = json.load(f)
for new_story in stories:
#Why can't I access variables using
new_story.title
#I have to do
new_story.get('title')