python如何获取函数名 python获取函数名称

主机教程 建站分享 2年前 (2022-10-12) 199次浏览

文章摘要:python如何获取函数名 python获取函数名称

在python中获取函数名的方法 1.在类内部获取函数名 import sys class testsqawd […]

在python中获取函数名的方法

1.在类内部获取函数名

import sys

class testsqawd(object):

def hello(self):

print('the name of method is ## {}##'.format(sys._getframe().f_code.co_name))

print('the name of class is ## {} ##'.format(self.__class__.__name__))

if __name__ == '__main__':

ttt = testsqawd()

ttt.hello()

2.在函数内部获取函数名

def my_name():

print(sys._getframe().f_code.co_name)

print(inspect.stack()[0][3])


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python如何获取函数名 python获取函数名称
文章链接:http://www.7966.org/post/14134.html
转载请注明出处

喜欢 (0)