如何访问dict_values中的元素?

How to access elements in a dict_values?

我有一个字典:

{49: {'created_at': '2018-11-07T13:25:12.000Z', 'url': 'https://www.test.com'}}

我想要'created_at'。

我尝试过不同的方法但没有成功...我认为这种方法可行:

result = di.values()[0] 但我得到 TypeError: 'dict_values' object does not support indexing

但事实并非如此。

你应该使用:di[49]['created_at']

或:

list(di.values())[0]['created_at']