获取类名和函数名

#_*_ 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("01",sys._getframe().f_code.co_name)
    print("02",inspect.stack()[0][3])
my_name()

输出:

the name of method is ## hello##
the name of class is ## testsqawd ##
01 my_name
02 my_name
posted @ 2022-07-18 23:31  ty1539  阅读(22)  评论(0编辑  收藏  举报