Files
Python-Schulung/Dienstag/func.py

7 lines
171 B
Python
Executable File

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