获取类名和函数名

#_*_ encoding: utf-8 _*_   @author: ty  hery   2019/7/17

import sys
import inspect
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()

def my_name():
    print(sys._getframe().f_code.co_name)
    print(inspect.stack()[0][3])
my_name()
#输出
the name of method is ## hello##
the name of class is ## testsqawd ##
my_name
my_name

写入自己的博客中才能记得长久
原文地址:https://www.cnblogs.com/heris/p/14033424.html