diff --git a/Technik/Python/Befehle.md b/Technik/Python/Befehle.md index 88ffdf0..43513fe 100644 --- a/Technik/Python/Befehle.md +++ b/Technik/Python/Befehle.md @@ -72,3 +72,10 @@ Wenn wir nichts zurück geben wird automatisch der Wert None zurück gegeben!!! Aufruf der Funktion: say_hello("Ralf","Koop") + + +**def** maximum(a,b): + if a < b + return b + else: + return a \ No newline at end of file