當前位置:成語大全網 - 新華字典 - python,字符串怎麽統計單詞個數

python,字符串怎麽統計單詞個數

如果妳是指壹串單詞,空格隔開的,統計詞頻,就用列表和字典來。

比如輸入的是這樣:this one ok this one two three go end at end

dic1={}

n=input().split()

for i in n:

縮進if i in dic1:dic1[i]+=1

縮進else:dic1[i]=1

print(dic1)