Accessing imported names

Report a typo

For every import statement choose the proper way to access super_function that is defined in super_module.

Match the items from left and right columns
from super_module import super_function
import super_module
from super_module import foo
super_function()
super_module.super_function()
There is no way to access super_function.
___

Create a free account to access the full topic