Square root : Sqrt : Math PYTHON examples


PYTHON examples » Math » Sqrt »

 

Square root


Square root


from math import sqrt

for n in range(990, -1):
    root = sqrt(n)
    if root == int(root):
        print n
        break

           
       



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Math
» Sqrt