If you had two strings, like so ->
string1 = "get"
string2 = "Feed"
So how would you use these 2 strings to call a function named -> getFeed() ?
Depending on where the function is, you can use one of these:
globals()[string1 + string2]()
locals()[string1 + string2]()
eval(string1 + string2)() if it can be in arbitrary scope.