摘要: def Max(list): if len(list) == 2: if list[0] > list[1]: return list[0] else: return list[1] max_number = Max(list[1:]) if list[0] < max_number: ... 阅读全文
posted @ 2018-11-03 16:04 jjcc 阅读(105) 评论(0) 推荐(0) 编辑