What do you think of Code?

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
(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
8 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
KarlRanseierIII
7 months ago

I’ll say, well.

One step forward would be to use structural matching instead of if/elif.

KarlRanseierIII
7 months ago
Reply to  Hamed245
match wahl:
 case 1:
    # erste option
 case 2:
    # usw.
 case _:
    # alles andere

This simply reads better, whereby structural matchin still allows so pauses as side conditions etc.

HALLO78366
7 months ago

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.

HALLO78366
7 months ago
Reply to  Hamed245

Maybe it depends, just say what

HALLO78366
7 months ago

We can do this