どこから始めるべきか分かりません... item()は辞書を与えますが、私はそれを望んでいません。一意の各文字列を持つタプルのリストを返すにはどうしたらいいですか?
私はリストをループする必要があると言うでしょう....
してください私が始めることができるように誰かが私にいくつかのヒントを与えます!
EDIT:
count_of_names(names)
counts_of_names(['John', John', 'Catherine', 'John', 'Christopher', 'Catherine']'
が出力:
[('Catherine', 2), ('Christopher', 1), ('John', 3)]
サンプル入力と所望の出力してください –
count_of_names(名前は)だろう関数名... counts_of_names(['John'、John '、' Catherine '、' John '、' Christopher '、' Catherine ']'の出力は '[(' Catherine '、2)、( 'Christopher'、1)、( 'John'、3)] –