Python: Pass functions as parameters that *sometimes* have parameters themselves

前端 未结 0 1935
我在风中等你
我在风中等你 2021-01-17 23:02
def perform(f):
    a = "A"
    b = "B"
    f()
    #f(a,b)

def action1():
    print("No arg")

def action2(a,b):
        print(a)
            


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题