python学习day12

Posted

tags:

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

装饰器

ef wrapper(func): #wrapper装饰器的名字
    def inner(*args,**kwargs):
        #print(被装饰的函数执行之前你要做的事儿)
        print(你正在调用%s函数%func.__name__)
        ret = func(*args,**kwargs)   #被装饰的函数
        #print(被装饰的函数执行之后你要做的事儿)
        return ret
    return inner

@wrapper
def welcome(name):
    print(welcome : %s%name)

@wrapper
def home():
    print(欢迎来到home页!)


welcome(‘呜啦啦‘)  #你当前正在调用welcome函数
home()   #你当前正在调用home函数

 

以上是关于python学习day12的主要内容,如果未能解决你的问题,请参考以下文章

python学习day12

Python学习day1作业

python学习点滴记录-Day12-前端基础之html

python学习道路(day12note)(mysql操作,python链接mysql,redis)

python 机器学习有用的代码片段

day1-python学习