I have a python file containing multiple functions. And in another file, I have an array which contains functions name . *How can I implement array value in the format of functions *
For example : 1 file contains
def add(a,b)   
   c = a+b
      return c
2nd file contains
functin_arry = ["add"]
Then how can I call 1st file functions into 2nd file format of an array
 
     
     
     
    