标签: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())
标签:ret col color 装饰器 span sub() int code pre
原文地址:https://www.cnblogs.com/Exesoft-Mike/p/9286397.html