yield和return的区别(Python,非常全)

Yield vs. Return

YieldReturn
Yield returns a generator object to the caller, and the execution of the code starts only when the generator is iterated.A return in a function is the end of the function execution, and a single value is given back to the caller.
When the function is called and it encounters the yield keyword, the function execution stops. It returns generator object back to the caller. The function execution will start only when the generator object is executed.When the function is called, the execution starts and the value is given back to the caller if there is return keyword. The return inside the function marks the end of the function execution.
yield expressionreturn expression
No memory is used when the yield keyword is used.The memory is allocated for the value returned.
Very useful if you have to deal with huge data size as the memory is not used.Convenient for very small data size.
The performance is better if the yield keyword is used for large data size.A lot of memory is used if the data size is huge that will hamper the performance.
Execution time is faster in case of yield for large data size.The execution time used is more as there is extra processing done in case if your data size is huge, it will work fine for small data size.

来源:yield vs. return

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值