摘要: 方式一:函数 1 def fabs(n): 2 a, b = 0, 1 3 while b < n: 4 print(b, end=' ') 5 a, b = b, a+b 6 7 fabs(1000) 方式二:列表 1 result = [0, 1] 2 3 def fabs(n): 4 whil 阅读全文
posted @ 2016-11-26 23:03 12兵哥哥 阅读(2335) 评论(0) 推荐(0) 编辑