参考链接:
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()
运行结果:
the name of method is ## hello ##
the name of class is ## testsqawd ##
Process finished with exit code 0
2.函数内部获取函数名
def my_name():
print(sys._getframe().f_code.co_name)
print(inspect.stack()[0][3])