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.

2 months ago
123456789101112131415
  1. # Ausgabe von Geldbeträgen in einer speziellen Formatierung
  2. def main():
  3. for money in [120, 90, 100, 102, 2]:
  4. print(format_money_string(money))
  5. # Funktion zur Formatierung von Geldbeträgen
  6. def format_money_string(money):
  7. euros = money // 100
  8. cents = money % 100
  9. return f'{euros},{cents:02}'
  10. # Start des Programms
  11. main()