Comment trouver une racine carrée d'un nombre en utilisant Python

import math
whose_square = int(input("Of which number to find square root:- "))
print("The square root of ", whose_square,"is",math.sqrt(whose_square))
Programmer of empires