python 获取函数名
时间: 2023-06-08 14:07:48 浏览: 155
您好,下面是获取 Python 函数名的几种方法:
1.使用函数 __name__ 属性
例如:
def my_function():
pass
print(my_function.__name__)
输出结果为:my_function
2.使用内置函数 type()
例如:
def my_function():
pass
print(type(my_function).__name__)
输出结果为:function
3.使用内置模块 inspect
例如:
import inspect
def my_function():
pass
print(inspect.getframeinfo(inspect.currentframe()).function)
输出结果为:my_function
希望可以帮到您!
阅读全文