0
Function as an argument ( for 3 numbers plz explain)
2 Respuestas
+ 1
Something like this?
def sum(a,b):
return a+b
def subtract(c,d,function):
print(function(c,d))
subtract(4,5,sum)
also pls mention the language name in tags ,instead of "plz"
0
Tq