Which out of the following is incorrect syntax for importing a module of Python?
2026
Which out of the following is incorrect syntax for importing a module of Python?
Answer: C. from sin, cos import math
- A.
import math
- B.
from math import sin, cos
- C.
from sin, cos import math
- D.
import math as mt
Attempted by 364 students.
Show answer & explanation
Correct answer: C
Loading lesson…