我如何 get/access python 中 twitter 用户数据字典中的 'name' 属性?
How can I get/access the 'name' attribute from the user data dictionary in twitter in python?
我用 Twython 下载了一些推文。
我只想 get/access 'user' 对象字典中的 'name' 属性(例如 {'id': 540179903, 'id_str': '540179903', 'name': 'Makis Voridis' 等
我怎么能解决这个问题??
谢谢!!
如果它是一本字典,您只需执行 tweet['name']
并将 tweet 作为您的字典即可访问每个键。
我用 Twython 下载了一些推文。 我只想 get/access 'user' 对象字典中的 'name' 属性(例如 {'id': 540179903, 'id_str': '540179903', 'name': 'Makis Voridis' 等 我怎么能解决这个问题?? 谢谢!!
如果它是一本字典,您只需执行 tweet['name']
并将 tweet 作为您的字典即可访问每个键。