Python yield With Examples

Today we will learn about python yield keyword. Python yield has almost same purpose as return keyword except that it returns the values one by one. This is very useful keyword when you need to return a huge number of values.

Python yield

There is only one use of python yield keyword, that is to replace the return statement of a function with the yield statement.

When we do this, that function is called generator. We have already have a tutorial for generator. You can have a look at python generator.

Python yield example

As I said earlier yield is the replacement of return. So yield statement is written in the a function body. Let’s see how can we use yield:

This will output:

If you notice carefully then, you will see that we are using a for loop to see all the values. That means the function return something that is iterable. That is why we can iterate it and print the values.

When we use yield, first yielded value can be iterated once, and so on all values can be iterated once. Once we iterated all the yield value then we cannot go back. You can check it by again printing the statements value using for loop. It will output nothing. That means it is executing when we are iterating it. After iterating it nothing exists. Thus it saves memory space.

Simple example of using yield

We can also write yield statements as many as we wish using different loop. Suppose we want to write a function in which we will provide some values. And the function will calculate each value times by five, then return all the resultant. To do this, Let’s have a look in the following example:

This will output as follows:

python yield

Each elements that are given as argument is now multiplied by five.

Python yield generator

The function that is defined in the above example, is called generator for the use of yield. You can check is by a print command as following:

This will output:

To know about generator you can have a look in the python generator tutorial. We use generator when we need to read a huge number of values, then the use generator helps to save memory. Hope this tutorial helps you in understanding python yield keyword.

By admin

Leave a Reply

%d bloggers like this: