function returns a square root.
Answers
Answered by
2
def squareroot():
inp = int(input("Enter number: "))
return inp ** 0.5
Similar questions