There is a variant of the import statement that imports names from a module directly into the importing module's symbol table.
It means that you can use imported name directly without module_name prefix.
Import hello_world function from module my_module. Check the difference with task1.