摘要: 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... 阅读全文
posted @ 2014-01-11 10:55 Xjng 阅读(752) 评论(0) 推荐(0) 编辑