在Python中,可以通過以下兩種方式調(diào)用函數(shù):
hello
的函數(shù),可以像下面這樣調(diào)用它:def hello(name):
print("Hello, " + name)
hello("Alice")
greet
的函數(shù),可以將該函數(shù)賦值給一個變量,然后通過該變量調(diào)用函數(shù):def greet(name):
print("Nice to meet you, " + name)
my_func = greet
my_func("Bob")
無論哪種方式,都可以用來調(diào)用函數(shù)并執(zhí)行其中定義的代碼。