writing sqaure root of something in python code example
Example 1: python square root
import math
a = input("what do you wnat to square root")
print(math.sqrt(a))
Example 2: how to square root in python
import math
answer = math.sqrt(16)
import math
a = input("what do you wnat to square root")
print(math.sqrt(a))
import math
answer = math.sqrt(16)