from collections import CounterCounter(" ".join(df["text"]).split()).most_common(100)我很确定会给您您想要的东西(您可能必须在调用most_common之前从计数器结果中删除一些非单词)

from collections import CounterCounter(" ".join(df["text"]).split()).most_common(100)我很确定会给您您想要的东西(您可能必须在调用most_common之前从计数器结果中删除一些非单词)