Beispiele und Musterlösungen
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

calculator.py 273B

2 months ago
123456789
  1. # Rechenmaschine
  2. while True:
  3. repeat = input("Soll noch eine Addition durchgeführt werden? (j/n): ")
  4. if repeat == 'n':
  5. break
  6. zahl1 = float(input("Erste Zahl: "))
  7. zahl2 = float(input("Zweite Zahl: "))
  8. print(f"Die Summe beträgt {zahl1 + zahl2}")