python中keys函数怎么⽤_Pythonkeys()函数描述
keys函数是Python的字典函数,它返回字典中的所有键所组成的⼀个可迭代序列。使⽤keys()可以获得字典中所有的键。
语法dictionary.keys()
使⽤⽰例>>> list({'Chinasoft':'China', 'Microsoft':'USA'}.keys())
['Chinasoft', 'Microsoft']
>>> test_dict = {'Chinasoft':'China', 'Microsoft':'USA', 'Sony':'Japan', 'Samsung':'North Korea'}
>>> test_list = list(test_dict.keys())
>>> test_list
['Chinasoft', 'Microsoft', 'Sony', 'Samsung']
从上⾯的代码可以看出,keys函数将字典中的所有键组成了⼀个可迭代序列。
注意事项
函数返回的是⼀个可迭代序列,⽽不是列表
在Python3中,keys函数不再返回⼀个列表,⽽是⼀个dict_keys类型的可迭代序列:>>> test_dict = {'Xi\'an':'Shaanxi', 'Yinchuan':'Ningxia'}
>>> test_dict
{"Xi'an": 'Shaanxi', 'Yinchuan': 'Ningxia'}
>>> test_dict.keys()
python怎么读的dict_keys(["Xi'an", 'Yinchuan'])
>>> type(test_dict.keys())

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。