8 lines
148 B
Python
8 lines
148 B
Python
"""Mini-Fixture: Ausgabe."""
|
|
from rechner import addiere
|
|
|
|
|
|
def zeige(a, b):
|
|
"""Formatiert die Summe."""
|
|
return f"Ergebnis: {addiere(a, b)}"
|