search
HomeBackend DevelopmentPython TutorialWhat are decorators in Python and how to use them

The usage environment is: Python 3.6.8

What are decorators in Python and how to use them

What is a decorator

Before you understand the decorator , we need to understand what a closure function is.

Closure function

Let’s simply write a demo and explain what a closure function is.

def exterFunc(x):
  def innerFunc(y):
    return x * y
  
  return innerFunc

def main() -> None:
  f = exterFunc(6)
  result = f(5)

  print(result)

if __name__ == '__main__':
  main()

As you can see, as shown in the above code, the so-called closure function refers to: A closure function refers to a function defined within a function. The internal function can access external variables. In the external function , return the internal function as the return value.

As you can see in the above example, we defined the function exterFunc, which will receive a formal parameter x, in exterFunc innerFunc is defined in the function, which also receives a formal parameter y. In the innerFunc function, x * y is returned. Yes, the internal function can access the variables passed in by the external function, and finally returns exterFunc as the return value. This is the closure function.

The simplest decorator

The decorator is a very special function that can receive a function as a formal parameter and return a new function. In our previous article, we introduced the generator At that time, do you still remember that we used the memory_profiler library to print the memory operation status of the function? This is the decorator used.

What are decorators in Python and how to use them

We can write the simplest example to explain the python decorator, that is:

def foo(func):
    def wrapper():
        print("装饰器开始运行了")
        func()
        print("装饰器结束运行了")

    return wrapper

@foo
def sayHello():
    print("hello pdudo in juejin")

def main() -> None:
  sayHello()

if __name__ == '__main__':
  main()

In the above code, we A decorator foo is defined, foo needs to pass in a function, foo has a function wrapper inside. We call a function wrapped in such a function a closure function, and closure functions will be introduced later. Closer to home, in the wrapper function, we can execute the preceding and following statements when running the func function.

When you need to call the decorator, you only need to @add the function name.

Why decorators are needed

To explain this problem, we can look at what problems the decorator solves:

  • Solution code Repetitiveness. For those who often need to implement similar functions, the function can be extracted and called as a decorator to avoid code duplication.

  • Enhance code readability. You can use decorators to add code before and after functions without modifying the original code, such as handling exceptions, recording logs, etc. You can use decorators Separate additional functions from the main functions of the function to increase code readability.

Having said so much, let’s enumerate the simplest example and use the decorator to print the running time of the function.

import time

def getExecTimers(func):
  def wrapper():
    startTimes = time.time()
    func()
    endTimes = time.time()
    print("函数运行时间: " , endTimes - startTimes ,"s")
  return wrapper

@getExecTimers
def testFunc():
  print("开始执行函数")
  time.sleep(5)
  print("函数执行结束")

def main() -> None:
  testFunc()
  
if __name__ == '__main__':
  main()

This decorator will record the running time of the function. As you can see, we added an additional function to this function, but did not modify the original function.

The above case should be able to prove why you need to use decorators.

Decorator Usage

Above we discussed the simplest way to write a decorator, and wrote a small function, which is to print the running time of the function. Next, we have to look at other ways to write decorators.

Isn’t it called using syntax sugar?

Do you remember that when we called the decorator above, we used the @ decorator name? In fact, this is syntax sugar for python. If you don’t use syntax sugar, it should be used like this:

def foo(func):
    def wrapper():
        print("装饰器开始运行了")
        func()
        print("装饰器结束运行了")

    return wrapper


def sayHello():
    print("hello pdudo in juejin")

def main() -> None:
  f1 = sayHello
  f2 = foo(f1)

  f2()

if __name__ == '__main__':
  main()

The complete writing method should be as shown in the following code. This is a complete closure. Package calling logic.

f1 = sayHello
f2 = foo(f1)

f2()

Adding the @ decorator name before the function is a kind of syntax sugar for python

Decorator with parameters

Here is a foreshadowing. In python, there are two special variables, namely *args and **kwargs, both Used to handle indefinite parameters, the respective meanings are:

  • *args: The parameters will be packed into tuples

  • **kwargs: The packed dictionary will be passed to the function

def foo(func):
    def wrapper(*args,**kwargs):
        print("装饰器开始运行了")
        print("装饰器捕获到的参数: " ,args,**kwargs)
        func(*args,**kwargs)
        print("装饰器结束运行了")

    return wrapper

@foo
def sayHello(a,b,c,dicts):
    print("传入的参数: " , a,b,c)
    print("传入的参数: " , dicts)

def main() -> None:
  sayHello(1,2,3,{"name":"juejin"})

if __name__ == '__main__':
  main()

In the decorator, if we want to pass parameters to the function, it is necessary The parameters are passed to the decorator first, and then passed after being received in the decorator, so the code will be like this:

def foo(func):
    def wrapper(*args,**kwargs):
        print("装饰器开始运行了")
        print("装饰器捕获到的参数: " ,args,**kwargs)
        func(*args,**kwargs)
        print("装饰器结束运行了")

First of all, when we make the transfer call, wrapperYou should call the formal parameter to receive it, and then pass it to the function func after receiving it.

The above is the detailed content of What are decorators in Python and how to use them. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!