How could you use the sqrt function from the math module to print the square root of 16?
![How could you use the sqrt function from the math module to print the square root of 16 class=](https://us-static.z-dn.net/files/d04/c7302f4ca849d4c4959246cccee57a4c.png)
Answer:
b
Explanation:
It is not "import sqrt" because import is used to add a module, and "sqrt" is not a module.
It is not sqrt(16) because we need to use the math. prefix so that python recognizes that sqrt is a function from the math module.