mycomputer me$ ipython
Python 3.7.1 (default, Nov4 2018, 00:41:56)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.1.1 -- An enhanced Interactive Python. Type '?' for help.
In [1]: def test1(): ...:print("----1----") ...:
In [2]: test1()
----1----
In [3]: local_name = test1
In [4]:local_name()
----1----
In [5]: