python 在函数内部获取该函数名称

code

macname@localhost Desktop % cat exce.py    
import sys

def tmp_func():
    print(sys._getframe().f_code.co_name)

tmp_func()
macname@localhost Desktop % python3 exce.py
tmp_func
macname@localhost Desktop % 

 

 

 

 

 

 

 

 

 

 

 

posted @ 2020-11-27 19:15  anobscureretreat  阅读(633)  评论(0编辑  收藏  举报