我有一个字符串列表X
。 x_i
中的每个条目X
都是一组可能的字符串Y
中的一个。如何计算y_j
中字符串X
的实例数?
答案 0 :(得分:2)
来自here的解决方案:
from collections import Counter
X = ['blue', 'red', 'blue', 'yellow', 'blue', 'red']
print Counter(X).items()
输出:
[('blue', 3), ('yellow', 1), ('red', 2)]