Welcome to Westonci.ca, the place where your questions find answers from a community of knowledgeable experts. Our platform provides a seamless experience for finding reliable answers from a knowledgeable network of professionals. Get quick and reliable solutions to your questions from a community of experienced experts on our platform.

Which will have an output of 7.0?

>>> from math import root
>>> root(49)>>> from math import root >>> root(49) ,

>>> from math import sqrt
>>> sqrt(49)>>> from math import sqrt >>> sqrt(49) ,

>>> from root import math
>>> root49)>>> from root import math >>> root49) ,

>>> from sqrt import math
>>> sqrt(49)>>> from sqrt import math >>> sqrt(49) ,