I want to store multiple functions inside an array and execute one function when i call array[index] to be executed and not all the functions inside the array, how to do it in python?
Example:
array = [ function2(1, 2), function3(2, 3)]
array[0] #Execute array[0] and not all the functions inside array