This commit is contained in:
2022-11-22 14:45:34 +01:00
parent 8657075f55
commit 2a1f5ea7c6
5 changed files with 115 additions and 1 deletions

7
Dienstag/func.py Normal file
View File

@@ -0,0 +1,7 @@
#! /usr/bin/env python3
def myprint(Ausgabe):
print("-" * len(Ausgabe))
print(Ausgabe)
print("-" * len(Ausgabe))
myprint(Ausgabe = "Ausgabe der Funktion")