search
HomeBackend DevelopmentPython TutorialPython basics decorators and exercises
Python basics decorators and exercisesDec 22, 2020 pm 05:45 PM
pythonDecorator

Python video tutorialExplaining decorators

Python basics decorators and exercises

##Recommended free:

Python video tutorial

Decorator concept

Decorator, to put it bluntly, is a

function## used to decorate functions. #. The decorator follows the open-closed principle
and dependency inversion principle. These two principles and concepts can be found on Baidu.

What does the decorator look like?

def wrapper(f): 
    def inner(*args,**kwargs):  
        ret = f(*args,**kwargs)
        return ret
    return inner
The above code is the fixed format of the decorator

Calling the decorator

@wrapper  # 简称语法糖
def test():
    print(1)
test()

@wrapper

is calling the decorator, Compared with wrapper(test()), it saves code and is more beautiful. Maybe you don’t understand when you see this, why do you need @wrapper? The calling function is not wrapper()? Actually, if you ask me to tell you, I don’t know. I just know that it is easier to write this way. Directly in front of the function to be decorated@wrapper
Quickly understand the decorator with a small example

def wrapper(f):
    print(2)
    def inner(*args,**kwargs):
        print(3)
        ret = f(*args,**kwargs)
        print(4)
        return ret
    return inner


@wrapper
def test():
    print(1)
test()

@wrapper

== wrapper(test()) It is equivalent to calling the decorator function. It will be easier to directly use the syntax sugar @wrapper*args
is the matching For positional parameters, **kwargs matches parameters passed by keyword, so that all parameters can be received. wrapper(test)
Receives the value and passes it to f. In the inner circle function, ret = f(*args,**kwargs)This function is Code that executes the decorated function. Then return the executed value, and finally return this function. The execution result of this code is: <pre class="brush:php;toolbar:false">2 3 1 4</pre>

As shown in the figure below

Python basics decorators and exercises##It can be seen from this

## In #function

inner, print(3)
is the operation before executing the decoration function, and print(4) is the operation after executing the decoration function. It may be difficult to understand. So it’s best to give it a try. Basic exercises

'''1. 默写装饰器固定格式
  2. 写一个加减功能的装饰器
'''

The above is the detailed content of Python basics decorators and exercises. 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标准库May 03, 2022 am 09:00 AM

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

手把手教你用装饰器扩展 Python 计时器手把手教你用装饰器扩展 Python 计时器Apr 13, 2023 pm 08:46 PM

这是我们手把手教你实现 Python 定时器的第三篇文章。前两篇:分别是手把手教你实现一个 Python 计时器​,和用上下文管理器扩展 Python 计时器​,使得我们的 Timer 类方便用、美观实用。但我们并不满足于此,仍然有一个用例可以进一步简化它。假设我们需要跟踪代码库中一个给定函数所花费的时间。使用上下文管理器,基本上有两种不同的选择:1. 每次调用函数时使用 ​Timer:with Timer("some_name"): do_something()当我们在一

Python中的装饰器和上下文管理器是如何工作的?Python中的装饰器和上下文管理器是如何工作的?Oct 20, 2023 pm 07:04 PM

Python中的装饰器和上下文管理器是如何工作的?在Python中,装饰器和上下文管理器是两个非常有用的概念和功能。它们都是为了简化代码、增加代码可读性以及方便代码的重用。一、装饰器装饰器是Python中一种用于修改函数的行为的特殊函数。它允许我们在不修改原始函数的情况下对其进行包装或拓展。装饰器在许多Python的框架和库中被广泛使用,比如Flask、Dj

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如虎添翼,开发效率顿时提升到一个新的阶段。

使用上下文装饰器调试Pytorch的内存泄漏问题使用上下文装饰器调试Pytorch的内存泄漏问题Apr 10, 2023 am 11:31 AM

装饰器是 python 上下文管理器的特定实现。本片文章将通过一个pytorch GPU 调试的示例来说明如何使用它们。虽然它可能不适用于所有情况,但我它们却是非常有用。调试内存泄漏问题有很多方法可以调试内存泄漏。本文将展示一种识别代码中有问题的行的有用方法。该方法可以有助于以简洁的方式找到具体的位置。逐行手动调试如果遇到问题,一种经典的且常用的方法是使用调试器逐行检查,比如下面的例子:在搜索引擎查找有关如何计算 pytorch 中所有张量总数的代码片段,比如:tensor-counter-s

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 Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools