我需要幫助進行一項名爲strcount(S)
的功能,該功能返回一個字詞作爲關鍵字以及一個詞作爲相應值出現的次數。輸出應該是這樣的:統計獨特詞彙並在Python中創建詞典和計數的詞典
strcount("a a a a b b")
{'a': 4, 'b': 2}
strcount("one")
{'one': 1}
sorted(strcount("this one and that one for one time").items())
[('and', 1), ('for', 1), ('one', 3), ('that', 1), ('this', 1), ('time', 1)]
你有什麼如此遠? –