Python关于装饰器的练习题

Posted python学习者0

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python关于装饰器的练习题相关的知识,希望对你有一定的参考价值。

1.请实现一个装饰器,把函数的返回值+100然后返回

def wapper(func):
    def innner(*args,**kwargs):
        ret=func(*args,**kwargs)
        ret=print(ret+100)
        return ret
    return innner
@wapper
def func(number):
    return int(number)
func(100)
###结果:200

2.请实现一个装饰器,通过一次调用使函数重复执行5次

#Python学习交流群:725638078
def wapper(func):
    def innner(*args,**kwargs):
        count=0
        while count<5:
            func(*args,**kwargs)
            count+=1
    return innner
@wapper
def func():
    print("执行")
func()

3.请实现一个装饰器,每次调用函数时,将函数名字以及调用此函数的时间点写入文件中

import time
def wapper(func):
    def inner(*args,**kwargs):
        with open("log",encoding="utf-8",mode="a+") as f:
            structime=time.localtime()
            f.write(f\'北京时间:{time.strftime("%Y-%m-%d %H:%M:%S",structime)} 函数名字为:{func.__name__}\\n\')
        ret=func(*args,**kwargs)
        return ret
    return inner
@wapper
def func():
    print("执行")
func()

结尾给大家推荐一个非常好的学习教程,希望对你学习Python有帮助!

Python基础入门教程推荐:更多Python视频教程-关注B站:Python学习者

Python爬虫案例教程推荐:更多Python视频教程-关注B站:Python学习者

以上是关于Python关于装饰器的练习题的主要内容,如果未能解决你的问题,请参考以下文章

python三大器之装饰器的练习

Python装饰器的通俗理解

关于路径和自定义装饰器的 Python3 Django 问题

PythonProperty关于属性装饰器的优化

python装饰器练习

Python进阶装饰器(Decorator)