+ 3
What is wrong with this equation
def mutiply(a, b): a * b
2 RĂ©ponses
+ 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