递归的全部评论

递归的全部评论
1个评论
# 方法一
money = 1
for i in range(30 - 1):
    money = (money + 1) * 2
print(f'总共拿了银行{money}元。'
2023-02-06
下载 APP