Which of the following is not a way to import the module 'm1' or the functions 'f1' and 'f2' defined in it?
Answers
Answered by
4
We can utilize any Python source document as a module by executing an import articulation / statement in some other Python source record. The import has the accompanying sentence structure / syntax :
import module 1[ module 2[ module N]
Module m1 can't be imported or the functions f1 and f2 in the following way :
import f1, f2 from m1
Similar questions