The Python Tutorial, mentions this following statement within the chapter 6. Modules.
"It also includes any submodules of the package that were explicitly loaded by previous import statements."
The questions is, if there were no previous import statements
import sound.effects.echo
import sound.effects.surround
,would echo and surround be not imported? If yes, how does using the two above mentioned import statements exactly change the behaviour of import *?