def multiply(a, b): code example
Example 1: 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)
Example 2: def multiply(a, b): a * b
def multiply(a, b):
return(a * b)