标签: python
我写了这个替代方法来查找一个数字是一个完美的正方形还是没有我怎么能解决这个问题:
n = input ('type n ') message = ('false') if n>0 and (math.sqrt(n)).is_integer(): message = ('true') print (message)