摘要: def f(n): n+=1 print("hello :{}".format(n)) return n+1 ret = f(9) print("Functionreturn value :",ret) 在没有装饰器的情况下,运行结果如下 hello :10 Functionreturn value 阅读全文
posted @ 2022-11-24 15:33 腹肌猿 阅读(250) 评论(0) 推荐(0) 编辑