Files
Python-Schulung/Dienstag/func.py
2022-11-22 14:45:34 +01:00

7 lines
171 B
Python

#! /usr/bin/env python3
def myprint(Ausgabe):
print("-" * len(Ausgabe))
print(Ausgabe)
print("-" * len(Ausgabe))
myprint(Ausgabe = "Ausgabe der Funktion")