用for循环语可以及切片的方法设计一个程序找出100000以内的所有回文数
这个该怎么写
for i in range(1,100000): if str(i)==str(i)[::-1]: print(i)