1. 程式人生 > >python3學習之生成器

python3學習之生成器

python

range() 和 xrange() 是生成器


只要函數中存在yield,該函數就是生成器


g():    r = g()     i r:


python3學習之生成器