机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
C++
在线答题
积分排行榜
活跃排行榜
网盘
链接
打字练习
Microbit
未登录
未登录
登录学习
作者:
李卓航
更新时间:
2024-11-02 12:03
浏览:
114次
点赞:
0次
热度:
20
def a(b): if b==1: return 10 else: return a(b-1)+2 print(a(5)) def a(b): if b==0: return else: print(b%10,end='') return a(b//10) a(123) def str1(s): if len(s)==0: return else: print(s[-1],end='') return str1(s[:-1]) s1=input() str1('1234') ''' def a(n): if n==0: return 1 else: return n*a(n-1) print(a(4))
点赞成功
分享作品
×