Python - Modules and Code Organization
If you have a custom module
What will this code print?
calculator.py with:def multiply(x, y):
return x * yWhat will this code print?
from calculator import multiply print(multiply(3, 4))
