Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Which of the following is the correct way to import the numpy module with an alias (np) and use its sqrt function?
sqrt
import numpy as npresult = np.sqrt(16)
import numpy as sqrtresult = sqrt(16)
import numpyresult = np.sqrt(16)
import numpy as npresult = numpy.sqrt(16)
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!