Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

i want to do an Dictionary and its not working

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...