Does the order in which the modules are placed in a file matters in Python?
Answers
Answered by
0
No, it doesn't, because each python module should be self-contained and import everything it needs. This holds true for importing whole modules and only specific parts of it.
Similar questions