摘要:
@W1 类似于#f1 = w1(f1) 添加语法糖的方法,相当于把该方法,放进语法糖的方法中运行 语法糖: @函数1 函数2 等价于:函数2= 函数1(函数2) 阅读全文
摘要:
1 def foo(test): 2 def foo1() 3 print("hello word!") 4 print(test = test+1) 5 return foo1 6 7 f1 = foo() 阅读全文
摘要:
阅读全文