Answers for "how to square root a number python"

7

python square a number

import math

8 * 8          # 64
8 ** 2.        # 64
math.pow(8, 2) # 64.0
Posted by: Guest on March-07-2020
1

how to square root in python

import math
answer = math.sqrt(16)
Posted by: Guest on September-19-2020

Code answers related to "how to square root a number python"

Python Answers by Framework

Browse Popular Code Answers by Language