Is there a way to store a function in a list or dictionary so that when the index (or key) is called it fires off the stored function?
For instance, I’ve tried things like mydict = {'funcList1': [foo(),bar(),goo()], 'funcList2': [foo(),goo(),bar()], which doesn’t work.