摘要: 1 def square_add(func): 2 def new_function1(*args, **kwargs): 3 result = func(*args, **kwargs) 4 return result ** 2 5 return ... 阅读全文
posted @ 2015-12-24 15:33 翌逍 阅读(251) 评论(0) 推荐(0) 编辑