仁爱水杯

文章
6
资源
0
加入时间
3年0月21天

浅谈python迭代器

1、yield,将函数变为 generator (生成器) 例如:斐波那契数列 def fib(num): a, b, c = 1, 0, 1