+ 3
What is wrong with this equation
def mutiply(a, b): a * b
2 Respostas
+ 9
You aren‘t explicitly returning something, Oketunbi Olatunji .
Try the following:
————————————
def multiply(a,b):
return a*b
————————————
Hope this helps 😊
+ 1
the function does not specify what to return.....second line must be
return a*b