How can the function sqrt() be used in Python? class 11 code example
Example: python square root
import math
a = input("what do you wnat to square root")
print(math.sqrt(a))
import math
a = input("what do you wnat to square root")
print(math.sqrt(a))