Python beginner: I would like to take input from the user, and based on the input, multiple functions will be executed:
def func1():
'This is function 1'
def func2():
'This is function 2'
def func3():
'This is function 3'
funcDict = {'A': func1, 'B': func2, 'C':func3}
response = raw_input()
So if the user inputs the string 'A,B' , func1 and func2 will be executed