Science, asked by mohitparjapati6005, 1 year ago

Does the order in which the modules are placed in a file matters in Python?

Answers

Answered by uttamprakash712
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