Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Basics Functions and Looping While Loops

Doubt about the import module

HI! I was wondering about the import modules. When we import for example the math module, and the we write like, I don't know, 200 lines of code and we need again the math module, we need to import it again? In the case we don't need to import it because with one import will run into the whole code, should we import first all the modules at the beginning of every code? I don't know if made myself clear with the question, hope I did haha.

2 Answers

you are 100% clear. It's a best practice to import all the moudles at the beginning of the script. you dont need to import the same moudle again after u do it once even if u have 10m lines of code :]

Thanks for the feedback <noob /> ! I've learned a new thing haha.

Thanks again!