I want to create some kind of user interface and the user should be able to type the name of the function he wishes to run:
task = input('Programm to run: ')
Once task is defined I want to execute the desired task like:
task()
If for example the desired program is functonthe script shall execute function().
 
     
     
    