What does a relative import like `from . import utils` do?
-
A
Imports `utils` from the same package as the current module
-
B
Imports `utils` from the Python standard library
-
C
Imports `utils` from the parent directory of the project
-
D
Imports `utils` relative to `sys.path[0]`