My Code
#!/usr/bin/python
''' Argus - Fl?chenmesser! '''
print('Hallo, mein Name ist Argus.
'
'Für die Fl?chenberechnung des Wohnraums,
''teilen sie bitte alle Fl?chen in Rechtecke auf und geben sie die Anzahl aller Fl?chen an.')
name=0
datenspeicher={}
while True:
for i in range (1,1000):
l = float(input("Geben Sie bitte die L?nge des Raumes ein: "))
b = float(input("Geben Sie bitte die Breite des Raumes ein: "))
O = l*b
print("Der Fl?cheninhalt ist",O,"m2 gro?.")
try:
if name in datenspeicher:
flaecheninhalt=datenspeicher[name]
else:
flaecheninhalt=[]
flaecheninhalt.append(flaecheninhalt)
datenspeicher.update({name:flaecheninhalt})
for i in datenspeicher.items():
print(i)
except ValueError:
continue
I want to do an Dictionary
and is not working can any body help me?
question from:
https://stackoverflow.com/questions/66060953/i-want-to-do-an-dictionary-and-its-not-working 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…