I was exploring through the maths function in python 3.0. I have written the following code for the following question. I am not sure if the answer is right.
Write a code segment that only imports sqrt
from the math
module.
The code then prints out the square root for 81 and 9 respectively using the sqrt
function math.sqrt(81)
from math import.sqrt(81)
print(sqrt(81))
Please help me to rectify if not please post the solution for the question thanks