====Basic Aufgaben==== # Basic Aufgabe 1 zahl = input("Gib eine Zahl ein:") zahl = int(zahl) print("Das Ergebnis lautet:") print(zahl + 10) # Basic Aufgabe 2 eingabe = input("Gib etwas ein: ") neu = eingabe print("Ausgabe: ") print(neu) # Basic Aufgabe 3 teil01 = "Katzen" teil02 = "Futter" kombi = teil01+teil02 print(kombi) # if-Bedingung Phyton wert = 25 if wert == 25: print("Wert ist kleiner als 30") # Taschenrechner def sum(a, b): return (a + b) a = int(input('Enter 1st number: ')) b = int(input('Enter 2nd number: ')) print(f'Sum of {a} and {b} is {sum(a, b)}') # Basic Aufgabe 4 b = input("Gib die Steigung ein: ") a = input("Gib den Offset ein: ") b = int(b) a = int(a) x = 0 while x < 10: print(x*b+a) x = x + 1 # Versuch b = input("Gib die Steigung ein: ") a = input("Gib den Offset ein: ") b = int(b) a = int(a) x = 0 while x < 5: print(x*b+a) x = x + 1 #Vesuch Aufgabe 5 import random zufall = random,randint(1.100) eingabe = input("Rate eine Zahl zwischen 1 und 100: " ) eingabe = int(eingabe) raten = True while raten: if eingabe < zufall: pint("Zu klein") elif eingabe > zufall: print("Zu groß") else: print("Du hast die Zahl gefunden") raten = False if raten: eingabe = input("Dein nächster Versuch: ") eingabe = int(eingabe) ====Methoden Aufgabeben==== #Aufgabe Nr. 1 line 1,2: def sum(a, b): return (a + b) = -the sum function takes two parameters, a and b -inside of the function, it calculates the sum of a and b by using the operatort + line 3,4: a = int(input('Enter 1st number: ')) b = int(input('Enter 2nd number: ')) = - input tells the user to enters two numbers,a and b - the reusult get stored in the variable in a and b line 5: print(f'Sum of {a} and {b} is {sum(a, b)}') = - the sum function is called with a and b as arguments - the result is nembedded into a formatted string - the string prints the result #Aufgabe Nr. 2 def berechne_prozent(): basiswert = float(input("Basiswert:")) prozentwert = float(input("Pozentteil:")) ergebnis = float(basiswert * prozentwert)/100 print(f"(prozentwert}% von {basiswert} sind {ergebnis}.")