题解 | #KiKi说祝福语#
KiKi说祝福语
https://www.nowcoder.com/practice/659248911f4f4a60bcc7e0892f91c268
def f(n):
if n == 0:
return
print('Happy new year!Good luck!')
return f(n - 1)
n = int(input())
f(n)
#题解#KiKi说祝福语
https://www.nowcoder.com/practice/659248911f4f4a60bcc7e0892f91c268
def f(n):
if n == 0:
return
print('Happy new year!Good luck!')
return f(n - 1)
n = int(input())
f(n)
#题解#相关推荐