摘要:
def small(func): def getfunc(): print "" func() print "" return getfuncdef strong(func): def getfunc(): print "" func() print "" return getfuncdef text(text="HELLO WORLD"): print text # newtext=small(strong(text))# newtext()@small@strongdef... 阅读全文