Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
What is the correct way to define a Python function that multiplies two integers and returns the result?
A
def fun: multiply_numbers(num1, num2): return num1 * num2
B
def multiply_numbers(num1, num2): print(num1 * num2)
C
def multiply_numbers(num1, num2): return num1 * num2
D
fun multiply_numbers(num1, num2): return num1 * num2
E
fun def multiply_numbers(num1, num2): return num1 * num2