asked 159k views
5 votes
How can you find the square root of 8 using the pow() function

1 Answer

0 votes

import math

print(math.pow(8, 0.5))

You can find the square root of any number by squaring it by 0.5

answered
User Vidhyanand
by
7.9k points