Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use yield in python

2025-01-15 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces how to use yield in python, the content is very detailed, interested friends can use for reference, I hope it can be helpful to you.

Def h (): yield ('study yield') yield 5 # print (' go onboarding') fun = h () print (next (fun)) print (next (fun)) fun.close ()

For traversal

Def h (): yield ('study yield') yield 5 # print (' go onboarding') # see Python Core programming second Edition, yield 305 page 11.10Generator # as described in the book, yield generator functions are created for traversal, not for manual use. For x in h (): print (x) so much for sharing about how to use yield in python. I hope the above content can be helpful to you and learn more. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report