I'd like to construct a Function that calls the sourcecode of requested bulit-in function, e.g.
def recall_source_of_built_in(sum()):
    #look up the directory of where the source codes are listed in windows
    #find the function whetehr it exists
    #if exists, open/read/ and display it on my Shell
To build up this function, from where I have to start from?
