Problem Statement
Which statement correctly performs a relative import from the same package?
Explanation
A single dot means the current package. This form keeps package internals flexible if you reorganize directories.
Absolute imports are clearer for public APIs. Relative imports suit private, within-package usage.
Code Solution
SolutionRead Only
# inside package module from .utils import helper helper.run()
