ホームページ >バックエンド開発 >Python チュートリアル >Python で辞書キーに複数の値を追加する方法
辞書キーに複数の値を追加する
Python の初心者にとって、辞書の操作は、特に複数の値を処理する場合に難しい場合があります。
対応する値を持つ年のリストがあり、その年をキーとして使用して辞書を作成するとします。ただし、年が複数回出現する場合は、その年の値を追加するメカニズムが必要です。
次の入力データを考えてみましょう:
2010 2 2009 4 1989 8 2009 7
目標は、次のような辞書を構築することです。
{ 2010: 2, 2009: [4, 7], # Appended value for the same key 1989: 8 }
これを実現するには、次の手順に従います。
<code class="python">years_dict = {} # Empty dictionary to store years and values # Iterate through the list of years and values for line in list: year = line[0] # Extract the year from the line value = line[1] # Extract the value for the year # Check if the year is already in the dictionary if year in years_dict: # If it is, append the new value to the existing list years_dict[year].append(value) else: # If it's a new year, create a new list and add the first value years_dict[year] = [value]</code>
このコードは、年がキーであり、関連付けられた値がリストに格納される辞書を作成します。年が複数回出現する場合、その値はリストに追加されます。
以上がPython で辞書キーに複数の値を追加する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。