Quiz Question 1 of 5
If a data scientist mistakenly uses the from math import *
statement in their script, which of the following issues is most likely to arise during execution in a large-scale project involving multiple libraries?
Choose the correct answer below:
-
A
There is a high risk of overwriting functions from other imported modules.
-
B
The script will run faster due to the import of all math functions.
-
C
Python will optimize the imports, leading to more efficient memory usage.
-
D
No issues will arise since importing all functions from
math
provides convenience.