I have a string variable which comes with different function names, and I have a file which contains an often different set of functions which matchs the content of the string, how do I call that function in Python?
Example:
In File 1
def function1: ...
def function2: ...
def function3: ...
In File 2
functionname = "function2"
I need to call the function2 from the File1 from this file