如何从 Python 字典中获取所有键的列表?
要从字典中获取所有键的列表,您可以简单地使用该函数。 dict.keys()
例子
my_dict = {'name': 'nhooo', 'time': '15 years', 'location': 'India'}输出结果key_list = list(my_dict.keys())
print(key_list)
这将给出输出 -
['name', 'time', 'location']
您还可以使用列表理解来获取字典中所有键的列表。
例子
my_dict = {'name': 'nhooo', 'time': '15 years', 'location': 'India'}输出结果key_list = [key for key in my_dict]
print(key_list)
这将给出输出 -
['name', 'time', 'location']
以上是 如何从 Python 字典中获取所有键的列表? 的全部内容, 来源链接: utcz.com/z/358315.html