Python编程-字符串练习(判断回文数)

1.题目要求: 2. 程序内容: a=(input('请输入数字:')) if a==a[::-1]: print('这是回文数') else: print('这不是回文数') 执行结果:
相关文章
相关标签/搜索