Python:计算字典的重复值
我有一本字典,如下:
dictA = { ('unit1','test1') : 'alpha' , ('unit1','test2') : 'beta', ('unit2','test1') : 'alpha', ('unit2','test2') : 'gamma' , ('unit3','test1') : 'delta' , ('unit3','test2') : 'gamma' }
如何计算每个测试的重复值的数量,与单位无关?
即,
在“test1”中,有 2x“alpha”、1x“delta”,
在“test2”中,有 1x“beta”、2x“gamma”
有任何输入吗?
非常感谢。
I have a dictionary as follows:
dictA = { ('unit1','test1') : 'alpha' , ('unit1','test2') : 'beta', ('unit2','test1') : 'alpha', ('unit2','test2') : 'gamma' , ('unit3','test1') : 'delta' , ('unit3','test2') : 'gamma' }
How can I count the number of repeating values per each test independent of units?
i.e.
in 'test1' there is 2x 'alpha', 1x 'delta'
in 'test2' there is 1x 'beta', 2x 'gamma'
Any inputs?
Many Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在Python 2.7或3.1或更高版本中,您可以使用
collections.Counter
:
In Python 2.7 or 3.1 or above, you can use
collections.Counter
:prints