can I call a list of functions and use list comprehension?
def func1():return 1 def func2():return 2 def func3():return 3 fl = [func1,func2,func3] fl[0]()
Yes, you can - the functions get called as intended.