I was wondering if there is a way to print what the funciton definition?
so if I want to do something like:
def hello():
print 'hello'
some_function_to_show_definition(hello())
and the output should be:
print 'hello'
Just messing around in python and I was just wondering :)