作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一本看起来像这样的字典:
Counter({'firstKey': 1708, 'secondKey': 1589, 'thirdKey': 1424})
我想要两个列表:
第一个列表应该列出所有键:
['firstKey', 'secondKey', 'thirdKey']
第二个列表应列出所有值:
[1708, 1589, 1424]
请帮忙
最佳答案
尝试 list(Counter.keys())
and list(Counter.values())
>>> counter= Counter({'firstKey': 1708, 'secondKey': 1589, 'thirdKey': 1424})
>>> Keys = list(counter.keys())
>>> Keys
['firstKey', 'secondKey', 'thirdKey']
>>> Vals = list(counter.values())
>>> Vals
[1708, 1589, 1424]
>>>
关于Python 字典 : Create a list for all keys in dict, 另一个用于字典中的所有值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61426140/
我是一名优秀的程序员,十分优秀!