2019年1月3日
摘要: def factorial(list1,n): if len(list1) > 1: num = int(len(list1) / 2) if list1[num] == n: print('找到数字%s了'%list1[num]) elif list1[num] < n: print('要找的数字 阅读全文
posted @ 2019-01-03 19:49 rookiehbboy 阅读(439) 评论(0) 推荐(0) 编辑