Python 装饰器
发布时间:2020-12-20 10:17:23 所属栏目:Python 来源:网络整理
导读:? ? 1 # !/usr/bin/env python3 2 # -*- coding: utf-8 -*- 3 4 5 def out_func(fun): 6 def test(args): 7 print ( " 验证 " ) 8 return fun(args) 9 return test 10 11 12 @out_func 13 def func1(args): 14 print ( " this is func1! " + args) 15 return
? ? 1 #!/usr/bin/env python3 2 # -*- coding: utf-8 -*- 3 4 5 def out_func(fun): 6 def test(args): 7 print("验证") 8 return fun(args) 9 return test 10 11 12 @out_func 13 def func1(args): 14 print("this is func1! " + args) 15 return "return",func1 16 17 18 print(func1("bingfeng")) (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |