Possible Duplicate:
Can Python print a function definition?
In Javascript, it is possible to print a function's code as a string?
Example in Javascript:
function thisFunctionPrintsItself(){
return thisFunctionPrintsItself.toString();
}
Is it possible to do the same in Python?