如果我的术语不正确,我深表歉意。我试图从API返回获取函数的名称。例如,以下是从API返回的内容。如何获得the_function
这个名字?
my_variable = <Function the_function(str,int,uint)>
上面的type
是:
type(my_variable) = <class 'the_class.utils.datatypes.the_function'>
如果我只能访问显示的内容,如何输入文本字符串the_function
?除了将其转换为字符串并使用正则表达式或类似的东西之外,还有其他简便的方法吗?
答案 0 :(得分:1)
使用__name__
参数:
def yourfunction():
pass
print(yourfunction.__name__)
然后,您将获得预期的输出。
答案 1 :(得分:1)
如果您实际上可以通过任何变量访问该函数,则可以使用.__name__
:
>>> def the_function():
... pass
...
>>> the_function.__name__
'the_function'
>>> foo = the_function
>>> foo.__name__
'the_function'