Python: functions are objects
def say_hello(name):
print("Hello %s!" % name)
say_hello("PyConDE 2018")
my_func = say_hello
my_func("Awesome PyConDE 2018")INFO
def say_hello(name):
print("Hello %s!" % name)
say_hello("PyConDE 2018")
my_func = say_hello
my_func("Awesome PyConDE 2018")