参考:
(124条消息) Python:获取类中除内置方法外的所有方法名_彭世瑜的博客-CSDN博客_python 获取所有方法名
在类中加入如下函数,即可得到!
@classmethod
def get_methods(cls):
return list(filter(lambda m: not m.startswith("_") and (m != "get_methods"), dir(cls)))
参考:
(124条消息) Python:获取类中除内置方法外的所有方法名_彭世瑜的博客-CSDN博客_python 获取所有方法名
在类中加入如下函数,即可得到!