yield is a keyword that is used like return, except the function will return a generator.
yield 和return功能一樣
只不過返回的是生成器
所以它也是用在def 里的
yield is a keyword that is used like return, except the function will return a generator.
yield 和return功能一樣
只不過返回的是生成器
所以它也是用在def 里的