Created
August 3, 2020 12:30
-
-
Save BMU-Verlag/94ee231004cf101e5803e67c96f9eb93 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def addieren (x, y): | |
return x + y | |
def berechnen (func, x, y): | |
return func(x, y) | |
print(berechnen (addieren, 2, 3)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment