I have many functions with the same prefix. I want to use a combination of strings to invoke the function.
def func_plus_one(v):
    return v+1
def func_plus_two(v):
    return v+2
a='plus_one'
b='plus_two'
So how can I use 'func_'+a and 'func_'+b to use the function?
 
    