def example(function):
if input() == "Hello there!":
#at this point I want to call the function entered in the tuples
我的意思的例子:Python函數在功能
def example(function):
if input() == "Hello there!":
#do the function here
def Printer(What_to_print):
print(What_to_print + "Just an example")
example(Printer)
這是possibe,並在這樣做有缺憾?
您是否將函數作爲參數傳遞給另一個函數?是的,這是可能的,而且很常見。 – bereal
是的,這完全有可能。 – Harrison
'在這一點上,我想調用函數' - 那麼做那個? –