do every single course
This commit is contained in:
parent
955a043be6
commit
cc39e51117
6 changed files with 93 additions and 0 deletions
12
bedingungen/altersgruppen_kategorisierung.py
Normal file
12
bedingungen/altersgruppen_kategorisierung.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
alter = int(input("Ihr Alter: "));
|
||||
|
||||
if alter <= 12:
|
||||
print("Kind");
|
||||
elif alter >= 13 and alter <= 17:
|
||||
print("Teenager");
|
||||
elif alter >= 18 and alter <= 64:
|
||||
print("Erwachsener");
|
||||
elif alter >= 65:
|
||||
print("Senior");
|
||||
elif alter <= 0:
|
||||
print("Zu Jung!");
|
41
bedingungen/einfacher_taschenrechner.py
Normal file
41
bedingungen/einfacher_taschenrechner.py
Normal file
|
@ -0,0 +1,41 @@
|
|||
v = int(input("Version (1-2): "));
|
||||
|
||||
if v == 1:
|
||||
print("");
|
||||
# v1
|
||||
zahl1 = float(input("> Zahl 1: "));
|
||||
zahl2 = float(input("> Zahl 2: "));
|
||||
|
||||
mathOp = str(input("Mathematische Operation (+, -, *, /): "));
|
||||
|
||||
if mathOp == "+" or mathOp == "Addieren" or mathOp == "addieren" or mathOp == "plus":
|
||||
print(f"{zahl1} + {zahl2} = {zahl1 + zahl2}");
|
||||
elif mathOp == "-" or mathOp == "Subtrahieren" or mathOp == "subtrahieren" or mathOp == "minus":
|
||||
print(f"{zahl1} - {zahl2} = {zahl1 - zahl2}");
|
||||
elif mathOp == "*" or mathOp == "Multiplizieren" or mathOp == "multiplizieren":
|
||||
print(f"{zahl1} * {zahl2} = {zahl1 * zahl2}");
|
||||
elif mathOp == "/" or mathOp == "Dividieren" or mathOp == "dividieren":
|
||||
print(f"{zahl1} / {zahl2} = {zahl1 / zahl2}");
|
||||
else:
|
||||
print("Geben Sie eine mathematische Operation!");
|
||||
|
||||
elif v == 2:
|
||||
print("");
|
||||
# v2
|
||||
zahl1 = float(input("> Zahl 1: "));
|
||||
zahl2 = float(input("> Zahl 2: "));
|
||||
|
||||
mathOp = int(input("Mathematische Operationen: \n1. Addition\n2. Subtraktion\n3. Multiplikation\n4. Division\n> "));
|
||||
|
||||
if mathOp == 1:
|
||||
print(f"{zahl1} + {zahl2} = {zahl1 + zahl2}");
|
||||
elif mathOp == 2:
|
||||
print(f"{zahl1} - {zahl2} = {zahl1 - zahl2}");
|
||||
elif mathOp == 3:
|
||||
print(f"{zahl1} * {zahl2} = {zahl1 * zahl2}");
|
||||
elif mathOp == 4:
|
||||
print(f"{zahl1} / {zahl2} = {zahl1 / zahl2}");
|
||||
else:
|
||||
print("Geben Sie eine vorgegebene math. Operation!");
|
||||
else:
|
||||
print("Geben Sie eine richtige Version ein!");
|
10
bedingungen/eintrittpreis_museum.py
Normal file
10
bedingungen/eintrittpreis_museum.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
alter = int(input("Ihr Alter: "));
|
||||
|
||||
if alter < 6:
|
||||
print("Eintritt Frei");
|
||||
elif alter >= 6 and alter <= 17:
|
||||
print("5 Euro Eintritt");
|
||||
elif alter >= 18 and alter <= 65:
|
||||
print("10 Euro Eintritt");
|
||||
else:
|
||||
print("7 Euro Eintritt");
|
12
bedingungen/jahreszeiterkennung.py
Normal file
12
bedingungen/jahreszeiterkennung.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
monat = int(input("Monat 1-12: "));
|
||||
|
||||
if monat == 3 or monat == 4 or monat == 5:
|
||||
print("Frühling");
|
||||
elif monat == 6 or monat == 7 or monat == 8:
|
||||
print("Sommer");
|
||||
elif monat == 9 or monat == 10 or monat == 11:
|
||||
print("Herbst");
|
||||
elif monat == 12 or monat == 1 or monat == 2:
|
||||
print("Winter");
|
||||
else:
|
||||
print("Dieses Monat gibts nicht!");
|
12
bedingungen/notenbewertung.py
Normal file
12
bedingungen/notenbewertung.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
punkte = int(input("Eine Note 1-100: "))
|
||||
|
||||
if punkte <= 100 and punkte >= 90:
|
||||
print("Sehr gut")
|
||||
elif punkte <= 89 and punkte >= 80:
|
||||
print("Gut")
|
||||
elif punkte <= 79 and punkte >= 70:
|
||||
print("Befriedigend")
|
||||
elif punkte <= 69 and punkte >= 60:
|
||||
print("Ausreichend")
|
||||
elif punkte <= 59:
|
||||
print("Nicht bestanden")
|
6
bedingungen/schaltjahr_ueberpruefung.py
Normal file
6
bedingungen/schaltjahr_ueberpruefung.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
jahr = int(input("Gebe ein Jahr ein: "));
|
||||
|
||||
if jahr % 4 == 0 and (jahr % 100 != 0 or jahr % 400 == 0):
|
||||
print(f"{jahr} ist ein Schaltjahr");
|
||||
else:
|
||||
print(f"{jahr} ist KEIN Schaltjahr");
|
Loading…
Add table
Reference in a new issue