python- decorator 2

python- decorator 2

1. The function of both "variable

def bar():
    print("in the bar")
def foo():
    print("in the  foo")
    bar()
foo()   



def foo():
     print("in the  foo")
     bar()
foo()
def bar():
  print("in the bar")
foo()

Anonymous function
niming the lambda = X: X *. 5
Print (niming (. 3))

Guess you like

Origin www.cnblogs.com/kezi/p/11980569.html