Generators
What is yield from? Python Generators
·1134 words·6 mins
Python
Generators
Drops
Have you ever seen the term yield from in some Python code and wondered what it was? In this article we will delve even deeper into generators and understand, with examples, what yield from means and how we can use it to make our code even more efficient.
Generators in Python - Your Code 1000+ Times More Efficient
·1950 words·10 mins
Python
Drops
Performance
Generators
Do you know the difference between a “normal” function and a generator function in Python? What is the difference between the return of a usual function and the yield of a generator? In this article we will answer these questions and also delve into some aspects of the language