Was ist die Ausgabe?
Ein_Dictionary = {
"Eins": 1,
"Zwei": 3,
"Drei": 7,
"Vier": 2,
"Fünf": 9,
"Sechs": 4
}
Ein_Dictionary.update({
"Sieben":2,
"Acht":9,
"Neun": 2
})
Element = Ein_Dictionary.popitem()
Ein_Dictionary["Zehn"] = 10
# len(dict) --> Anzahl Schlüssel-Werte Paare
Ausgabe = len(Ein_Dictionary)
print(Ausgabe)