Computer Science, asked by akul123485, 8 months ago

function returns a square root.​

Answers

Answered by faseelaandru
2

def squareroot():

   inp = int(input("Enter number: "))

   return inp ** 0.5

Similar questions