Answers for "def multiply(a, b):"

3

def multiply(a, b): a * b

def multiply(a, b):
    return(a * b)
Posted by: Guest on September-24-2020
0

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)
Posted by: Guest on August-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language