9951 explained code solutions for 126 technologies


pythonHow to return a function from another function


def some_func():

  def other_func():
    return 'hi'

  return other_funcctrl + c
some_func()

this function to return another function

def other_func

defines another function inside parent function (we will return this function)

return 'hi'

example value returned from inner function

return other_func

will return other_func function