Metainformationen zur Seite
  •  

Basic Aufgaben

variablen.py
#Basics Augabe 1
zahl = input("Gib eine Zahl ein:")
zahl = int(zahl)
print("Das Ergebnis lautet:")
print(zahl + 10)
 
 
#Basics Aufgabe 2
eingabe = input("Gib etwas ein: ")
neu = eingabe
print("Ausgabe: ")
print(neu)
 
 
#Basics Aufghabe 3
teil01 = "Pferde"
teil02 = "stall"
kombi = teil01+teil02
print(kombi)
 
 
#Basics 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

Methoden Aufgaben

variablen.py
#Methoden Aufgabe 1
 It takes two numbers (a and b) and returns their sum.
 The user enters two numbers, wich are stored as a and b.
 The function calculates a+b.
 The sum is shown on the screen, e.g. Sum of 5 and 3 is 8.
 
 
#Methoden Aufgabe 2
def berechne_prozent():
    basiswert = float(input("Basiswert:"))
    prozentwert = float(input("Pozentteil:"))
    ergebnis = float(basiswert * prozentwert)/100
print(f"(prozentwert}% von {basiswert} sind {ergebnis}.")