Suppose I have a file called `my_functions.py`. What would I enter in my new Python file to copy all the functions from it into this program but have to use the dot notation?
A) `import my_functions` B) `from my_functions import *` C) `import my_functions as mf` D) `from .my_functions import *`