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

User Hallaghan
by
5.2k points

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

User Vidhyanand
by
5.3k points