Keyの下のDictに新しい値を追加したいときは、次のように書く必要があります。
# Dict={}
# Key = ....
# newvalue = ....
if not Key in Dict:
Dict[Key] = [ newvalue ]
else:
Dict[Key].append(newvalue)
4 行のコードが必要です。Python標準ライブラリを使用したより簡潔な方法はありますか? 例えば
Dict.appendkeyvalue(Key, newvalue)