2023年12月25日 星期一

使用遞迴控制列印次數

 def f(n):

print('i love python')

if n==1:return 

return f(n-1)


n = int(input())

f(n)

沒有留言: