How do you accept multiple inputs and check whether it is a perfect square or not in Python without math?

后端 未结 0 548
执笔经年
执笔经年 2021-02-01 14:52
lst=[]
n=int(input())
for i in range(0,n):
  ele=int(input("Enter: "))
  lst.append(ele)
for i in range(ele+1):
  power = i * i
  if power == ele:
    print(&q         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题