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 functon
the script shall execute function()
.