A Python module named pymod, py contains a function named pyfun ( ).
Which of the following snippets will let you invoke the function? (Select two answers)
From pymod import ‘
Pymod.pyfun ( )
Import pymod
Pymod. Pyfun ( )
Import pyfun from pymod
Pyfun ( )
From pymod import pyfun
Submit