codewars python first question code example
Example 1: what is the solution to the codewars first code
function multiply(a, b) {
const c = a * b
console.log(c)
}
multiply(2, 3)
Example 2: 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)