Decorators and Generators in Python

Decorators and Generators in Python with Examples

In this article, I am going to discuss Decorators and Generators in Python with Examples. Please read our previous article where we discussed Recursive and Lambda Functions in Python with examples. As part of this article, we are going to discuss the following pointers which are related to Decorators and Generators in Python.

  1. Decorators in Python
  2. @ symbol in python
  3. Generators in Python
  4. next function in Python
Decorators in Python with Examples:

We have already discussed nested functions and function as first class object concepts already. Clear understanding of these concepts is important in understanding decorators. A decorator is a special function which adds some extra functionality to an existing function. The meaning of the statement can be understood clearly by the end of this topic. For now let’s understand a decorator as:

  1. A decorator is a function that accepts a function as a parameter and returns a function.
  2. Decorators are useful to perform some additional processing required by a function.
Steps to create decorator:

Step1: Decorator takes a function as an argument

Decorators and Generators in Python with Examples

Step2: Decorator body should have an inner function

Decorators in Python with Examples

Step3: Decorator should return a function

Decorators in Python

Step4: The extra functionality which you want to add to a function can be added in the body of the inner_function.

Let’s create a function which takes two arguments and prints the sum of them.

Example: Add Function (Demo40.py)
def add(a,b):
   res = a + b
   return res

print(add(20,30))
print(add(-10,5))
Output:

Decorators and Generators in Python

Now, I wish to add some extra functionality of adding the two numbers only if they are positive. If any number is negative, then I wish to take it as 0 during adding. For adding this extra functionality let create a decorator.

def decor(func):  #Here ‘func’ is the the argument/parameter which receives the function 
    def inner_function(x,y):
        if x<0:
            x = 0
        if y<0:
            y = 0
        return func(x,y)
return inner_function  #Decor returns the func passed to it.

We have created our decorator and now let’s use it with our add function from demo40.py

add = decor(add)

With the above statement, we are passing the add function as parameter to the decorator function, which is returning inner_function. Now, the inner_function object or address will be overridden in the ‘add’ because we are capturing the returned function in it. After this, whenever we call add, the execution goes to inner_function in the decorator.

add(-10,20)

In inner_function, we are doing the extra logic for checking whether the arguments are positive or not. If not positive we are assigning them with zero. And we are passing the processed values to the original add function which was sent to the decorator. Our final code will be

Example: Decorator Function in Python (Demo41.py)
def decor(func):
   def inner_function(x,y):
       if x<0:
           x = 0
       if y<0:
           y = 0
       return func(x,y)
   return inner_function 

def add(a,b):
   res = a + b
   return res

add = decor(add)
print(add(20,30))
print(add(-10,5))
Output:

Decorator Function Example in Python

@ symbol in python:

In the above example, in order to use the decorator, we have used the ‘add = decor(add)’ line. Rather than using this we can just use the ‘@decor’ symbol on top of the function for which we want to add this extra functionality. The decorator once created can also be used for other functions as well.

Example: Subtract Function using decorator function in Python (Demo40.py)
def decor(func):
   def inner_function(x,y):
       if x<0:
           x = 0
       if y<0:
           y = 0
       return func(x,y)
   return inner_function 

@decor
def sub(a,b):
   res = a - b
   return res

print(sub(30,20))
print(sub(10,-5))
Output:

Subtract Function using decorator function in Python

Generators in Python with Examples:

Generators are just like functions which give us a sequence of values one as an iterable (which can be iterated upon using loops). Generators contain yield statements just as functions contain return statements.

Example: Generators in Python (Demo41.py)
def m():
   yield 'Mahesh'
   yield 'Suresh'

g = m()
print(g)
print(type(g))
for y in g:
   print(y)
Output:

Generators in Python with Examples

Example: Generators in Python (Demo42.py)
def m(x, y):
   while x<=y:
       yield x
       x+=1

g = m(5, 10)
for y in g:
   print(y)
Output:

Generators in Python with Examples

next function in Python:

If we want to retrieve elements from a generator, we can use the next function on the iterator returned by the generator. This is the other way of getting the elements from the generator. (The first way is looping in through it as in the examples above).

Example: Generators with next function in Python (Demo43.py)
def m():
   yield 'Mahesh'
   yield 'Suresh'
g = m()

print(type(g))
print(next(g))
print(next(g))
Output:

Decorators and Generators in Python with Examples

In the next article, I am going to discuss Modules and Packages in Python. Here, in this article, I try to explain Decorators and Generators in Python with Examples. I hope you enjoy this Decorators and Generators in Python with Examples article. I would like to have your feedback. Please post your feedback, question, or comments about this article.

Leave a Reply

Your email address will not be published. Required fields are marked *