def multiply(a, b): result = a * b # return the value of result here print(multiply(4, 2))
Your code
def subtract(a, b): # find the value of a - b so you can return it return result print(subtract(4, 2))
Your code
def power(a, b): # find the value of a raised to the power of b # return the result print(power(4, 2))
Your code
print(divide(4, 2))
Your code