【Python】inspect を使用してすべてのメソッドの名前を取得する方法

ソースコード import inspect ... for method in inspect.getmembers(【オブジェクト】, inspect.ismethod): print(method[0]) 関連記事