Python - Modules and Code Organization
You have two custom modules:
math_ops.py with def add(a,b): and string_ops.py with def add(a,b):. How can you use both add functions in one script without name conflict?