codewars problem this code does not execute properly 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)
//Statement
def multiply(a, b):
a * b
//Line 3 is wrong, so the correct line is
def multiply(a ,b)
return (a * b)