Quiz Question 1 of 5
What potential issue can arise from using the from module import *
syntax in a large-scale project involving multiple developers?
Choose the correct answer below:
-
A
It increases the project's memory footprint by importing unnecessary functions.
-
B
It can lead to accidental function overwrites, causing unpredictable behavior.
-
C
It prevents the use of aliasing, leading to long and redundant code.
-
D
It causes difficulty in tracking which functions belong to which modules.