`
nathan.wu
  • 浏览: 48758 次
  • 性别: Icon_minigender_1
  • 来自: 南京
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

python how to get current function name

阅读更多
#!/usr/bin/env python


import inspect



def current_fun_name():
    return inspect.getframeinfo(inspect.currentframe())[2]



if __name__ == '__main__':
    print current_fun_name()
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics