ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

python自定义注解

2026/9/27 1:25:53 拓冰建站 浏览量
python自定义注解

python自定义注解

 1 def print_log_before_action(fn):
 2     def print_log(*arg):
 3         print("before execute fn")
 4         return fn(*arg)
 5 
 6     return print_log
 7 
 8 
 9 @print_log_before_action
10 def print_hello(name: str):
11     print("hello python: " + name)
12 
13 
14 if __name__ == '__main__':
15     # print("test")
16     print_hello("guanxianseng")