Answers for "square root of a number python"

1

how to square root in python

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

square root in python

def square_root(num):
  	return num**0.5
#prints out 4
print(square_root(16))
#prints out 10
print(square_root(100))
Posted by: Guest on August-21-2020
-2

how to square a number in python

#16 to the power of 2
answer = 16**2
Posted by: Guest on September-19-2020

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

Python Answers by Framework

Browse Popular Code Answers by Language