diff --git a/Technik/Python/Befehle.md b/Technik/Python/Befehle.md index c7b1245..e456d1d 100644 --- a/Technik/Python/Befehle.md +++ b/Technik/Python/Befehle.md @@ -57,8 +57,8 @@ else: #### Funktionen -**def** say_hello(): - befehle +**def** say_hello(name): + print("Hallo " + name) Aufruf der Funktion: -say_hello() +say_hello("Ralf")