How are following import statements different?
i) import X ii) from X import * iii)from X import a,b,c
Answers
Answered by
0
Answer:
mark as brainliest
Explanation:
It import module X.
(b) It import all functions from the module X.
(c) It import function a, b, c from the module X.
Similar questions