# Importing a function from a module
from math import sqrt
# Using the imported function
x = 16
print("The square root of", x, "is", sqrt(x))The square root of 16 is 4.0sqrt` function from the `math` module using the `from...import` statement. This makes the `sqrt` function available to us in our program. We can then use the `sqrt` function to calculate the square root of the number 16 and print the result to the console.from...import` statement, we don't need to prefix the function name with the module name when we use it in our code. We can simply use the function name directly, as we did in the `print` statement.