8. Python - Importing Libraries

 import library_name // imports library

import library_name as short // import and create a reference

from library_name import * // import all of module's variables to be used directly without a (dot).variable

from library_name import specific_functionname // import specific things from module only

Comments

Popular posts from this blog

2. FreeCodeCamp - Dynamic Programming - Learn to Solve Algorithmic Problems & Coding Challenges

20. Data Analytics - Analyze Data to Answer Questions - Week 1

3. Algorithms - Selection Sort