Python - Modules and Code Organization
Given a file
What will be the output of this code?
math_ops.py with this code:def add(a, b):
return a + b
What will be the output of this code?
import math_ops print(math_ops.add(3, 4))
