Login and Register ×
Check your Email for the OTP
Python Classes and Objects Create Objects in Python
⚠ Report ✓ Question Verified Copy Link
Explanation:
The statement that is not a valid way to import the module 'm1' or the functions 'f1' and 'f2' defined in it is:
import f1, f2 from m1
The correct syntax for importing specific functions from a module is:
from m1 import f1, f2
So, the correct answer is: import f1, f2 from m1
Related Topic:
Share Above MCQ
Learn More MCQ Questions from Python Classes and Objects Create Objects in Python