码迷,mamicode.com
首页 > 编程语言 > 详细

装饰器练习——Python

时间:2018-07-09 22:27:19      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:ret   col   color   装饰器   span   sub()   int   code   pre   

Demo1:

def add():
    return 1+1

def sub():
    return 2-1

print(add())
print(sub())

Demo2:

def add():
    return 1+1

def sub():
    return 2-1

print(add())
print(sub())

Demo3:

def add():
    return 1+1

def sub():
    return 2-1

print(add())
print(sub())

Demo4:

def printLine(func):
    def f():
        print("-----------")
        return func()
    return f

@printLine
def add():
    return 1+1

@printLine
def sub():
    return 2-1


print(add())
print(sub())

 

装饰器练习——Python

标签:ret   col   color   装饰器   span   sub()   int   code   pre   

原文地址:https://www.cnblogs.com/Exesoft-Mike/p/9286397.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!