noten = [] def noten_schuelern(name, mathe, deutsch, englisch, bericht): noten.append({"Name": name, "Mathe": mathe, "Deutsch": deutsch, "Englisch": englisch, "Bericht": bericht}) print(f"Der Schüler {name} wurde hinzugefügt mit seiner Information.") def durchschnit(name, mathe, deutsch, englisch): info = [] schnitt = (mathe + deutsch + englisch) / 3 runden = round(schnitt, 4) info.append({name, runden}) print(f"Der Schüler {name} mit dem Notenschnitt von {runden}") def schueler_anzeigen(name): heraus = [schueler for schueler in noten if name.lower() in schueler["Name"].lower()] if heraus: print(f"Die Information: {noten}") else: print("Schüler wurde nicht gefunden!") def menue(): while True: print("__Menü__") print("1. Die Noten der Schüler hinzufügen") print("2. Der Durschnitt berechnen") print("3. Schüler anzeigen") print("4. programm beenden") wahl = int(input("Bitte wählen sie einer der Optionen aus:")) if wahl == 1: name = input("Bitte geben sie denn Name der Schüler ein:") mathe = int(input("Mathe Note:")) deutsch = int(input("Deutsch Note:")) englisch = int(input("Englisch Note:")) bericht = input("Schreiben sie informationen üben denn Schüler:") noten_schuelern(name, mathe, deutsch, englisch, bericht) elif wahl == 2: Name = input("Schüler Name:") Mathe = int(input("Mathe Note:")) Deutsch = int(input("Deutsch Note:")) Englisch = int(input("Englisch Note:")) durchschnit(Name, Mathe, Deutsch, Englisch) elif wahl == 3: nname = input("Geben sie denn schüler Namen ein:") schueler_anzeigen(nname) elif wahl == 4: print("Programm wird beendet") break else: print("Bitte geben sie was gültiges ein") menue() HABE ALLES ALLEINE PROGRAMMIERT AUßER DIE ZEILE DEF ANZEIGEN
I’ll say, well.
One step forward would be to use structural matching instead of if/elif.
Thank you.
This simply reads better, whereby structural matchin still allows so pauses as side conditions etc.
he is not bad, you can still summarize something, I can imagine the long places in def menue in the while loop from if Wahl 1 and the following condition. There’s something else…
But actually, it’s just that this looks more beautiful.
For later you should learn how to work with classes and how to put the menu in a GUI instead of the terminal. I’ll bring it with TKinter and PyQT myself, but you’ll have to know what you’re using in the end. There’s enough. https://wiki.python.org/moin/GuiProgramming
I had also tried something with a flask, so if you want to make something in the browser as a GUI, that’s really great.
But in itself, the code works, and is also very legible, that’s the first time.
Thank you very much for the answer, could I ask her to please a much?
Maybe it depends, just say what
We can do this
It looks like they have lots of experience, I could have them a lot as a friend in goodQuestion to improve my problems and my development in the programming language so they later ask so 😅😁