function that make the user create a function python code example
Example: reveal a defined function in python
import inspect as i
import sys
sys.stdout.write(i.getsource(MyFunction))
import inspect as i
import sys
sys.stdout.write(i.getsource(MyFunction))