This code does not execute properly. Try to figure out why. def multiply(a, b): a * b code example
Example: how to fix def multiply(a ,b): a*b
//Statement
def multiply(a, b):
a * b
//Line 3 is wrong, so the correct line is
def multiply(a ,b)
return (a * b)