我在python列表中對列表進行排序。但我也需要計算列表元素。下面的列表:如何統計python列表中的列表元素
fruit = [
['Apple', 'S+'], ['Apple', 'S+'], ['Apple', 'B+'],
['Grape', 'B+'], ['Grape', 'C+']
]
結果:
{'Apple':{'total':3, 'S+':2, 'B+':1}, 'Grape':{'total':2, 'B+':1, 'C+':1}}
我上面有導致通過幾個並同時。但我想要簡單的方法。有美麗和簡單的方法來獲得以上結果嗎?