To use the module, we add its name, followed by the method or data we want. Here we'll add math.sqrt(16) to call the square root method.
math.sqrt(16)
Make sure to pick math followed by . and then sqrt, (, ).
math
.
sqrt
(
)