在python字典中用.keys()方法获取的key值是以dict类型存储的,有时需要将其一一取出进行操作。
这时,可以用list()方法进行类型转换,再进行列表取值就可以了

fruitPrices = {'apples': 2.00, 'oranges': 1.50, 'pears': 1.75,
               'limes': 0.75, 'strawberries': 1.00}

print(fruitPrices.keys())
lst = list(fruitPrices.keys())
print(lst)
for i in range(5):
    print(lst[i])

输出结果

dict_keys(['apples', 'oranges', 'pears', 'limes', 'strawberries'])
['apples', 'oranges', 'pears', 'limes', 'strawberries']
apples
oranges
pears
limes
strawberries

这样就可以对不同key值下的value值进行操作了