鱼C论坛's Archiver
论坛
›
我的学习路
› Python课后作业第23讲 用递归方法确定是否回文
dongli2020
发表于 2020-7-30 10:55:50
Python课后作业第23讲 用递归方法确定是否回文
def ishuiwen(n):
if len(n) == 1:
return True
else:
if n == n[-1]:
return ishuiwen(n)
else:
return False
bingochina
发表于 2021-1-11 20:38:09
这样也可以学习了
页:
[1]
查看完整版本:
Python课后作业第23讲 用递归方法确定是否回文