如何在Python中以字符串形式获取函数名称?

每个函数都有一个名为__name__的属性。我们可以访问该属性并获取函数的名称。例如:

def some_func():
    return 0
print some_func.__name__

这将给我们输出:

some_func