📜  在 python 代码示例中设置完美正方形的条件

📅  最后修改于: 2022-03-11 14:45:18.758000             🧑  作者: Mango

代码示例1
import math

# Taking the input from user
number = int(input("Enter the Number"))

root = math.sqrt(number)
if int(root + 0.5) ** 2 == number:
    print(number, "is a perfect square")
else:
    print(number, "is not a perfect square")