赞
踩
回文数,即正着读和倒着读皆是一样的数,例如121为回文数,334不是回文数。若获取一整数,判断该数是否为回文数。
n = int(input()) a = str(n) if a[:] == a[::-1]: print("此数为回文数") else: print("此数不是回文数")