I have a list of functions say
list1 = ['foo','boo','koo']
now I want to call these functions one by one.
for i in range(len(list1)):
list1[i](<argumentslist>)
This gives me an error:
TypeError: 'str' object is not callable
How Should I make this possible ?