word
steam 84
heating 9
horizontal well 4
electromagnetic 2
single well 1
steam 5
foam 2
heating 1
solvent 5
hexane 7
steam foam 1
surfactant 106
miscible 1如何才能唯一地打印输出,使重复单词的值相加,并且单词不重复
steam 89
foam 2
heating 10
horizontal well 4
solvent 5
hexane 7
electromagnetic 2
steam foam 1
surfactant 106
single well 1
miscible 1发布于 2020-03-24 03:15:38
设置
s = pd.Series(
[84, 9, 4, 2, 1, 5, 2, 1, 5, 7, 1, 106, 1],
['steam',
'heating',
'horizontal well',
'electromagnetic',
'single well',
'steam',
'foam',
'heating',
'solvent',
'hexane',
'steam foam',
'surfactant',
'miscible']
).rename_axis('word')
s
word
steam 84
heating 9
horizontal well 4
electromagnetic 2
single well 1
steam 5
foam 2
heating 1
solvent 5
hexane 7
steam foam 1
surfactant 106
miscible 1
dtype: int64sum
s.sum(level=0)
word
steam 89
heating 10
horizontal well 4
electromagnetic 2
single well 1
foam 2
solvent 5
hexane 7
steam foam 1
surfactant 106
miscible 1
dtype: int64https://stackoverflow.com/questions/60820080
复制相似问题