Modules
Import reusable code with import statements.
PYTHON
import math
print(math.sqrt(16))Try it Yourself
Run this PYTHON example in your local environment or course sandbox.
Python Tutorial
Source: Bro Code
Import reusable code with import statements.
import math
print(math.sqrt(16))