ZhangZhihui's Blog  

2024年8月17日

摘要: # Note that this function is already available in the math module as fsum(). def number_sum(n): if n == 0: return 0 else: return n + number_sum(n - 1) 阅读全文
posted @ 2024-08-17 10:05 ZhangZhihuiAAA 阅读(2) 评论(0) 推荐(0) 编辑