I understood that python functions are objects too and after defining them I stored them in a dictionary but the question is how can I run these stored functions in dictionary? And can I save these functions in a pickle file and use theme later in my codes? Is it possible? An example of storing these functions but the way of running theme... I don't know!
>>> def a():
print('hello')
>>> b={'a':a}
>>> b['a']
<function a at 0x00000000033AE620>
>>> b['a'].run()
I need some method like run for thisfunction or at least view the function code!