Fork me on GitHub
摘要: yield使用浅析 菜鸟教程:http://www.runoob.com/w3cnote/python-yield-used-analysis.html #!/usr/bin/python # -*- coding: UTF-8 -*- def fab(max): n, a, b = 0, 0, 1 阅读全文
posted @ 2018-12-01 15:58 RongT 阅读(341) 评论(0) 推荐(0)