Python Modules and Packages
Python Modules
A module is a file containing Python code that can be reused in other programs.
python
import math
print(math.sqrt(16))
Next Tutorial: Setting Up Data Science Environment

