For every import statement choose the proper way to access super_function that is defined in super_module.
Accessing imported names
Report a typo
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.
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.