Blue Hat – Functions & Modules
intermediate20 XP
Modules & Libraries
Import Python's built-in modules to supercharge your programs
Modules
Python
import math, random
import datetime as dt
print(math.sqrt(16)) # 4.0
print(random.randint(1,100))
print(dt.date.today())from ... import
Python
from math import sqrt, pi
print(sqrt(25)) # 5.0⌨️
Type it yourself
Don't just read it — type the example from above into the box, press Run ▶, and watch what happens. Typing it yourself is how it really sticks! Stuck? Tap Show example.
Python · Playground
Output
Press ▶ Run to see your code come to life…Quick check
01/2
Which statement imports only sqrt from math?