摘要: def fact(x): if x == 1: return 1 else: return x * fact(x-1) 阅读全文
posted @ 2019-11-16 10:36 乔儿 阅读(408) 评论(0) 推荐(0)