Pythonで現在実行中のメソッド名を取得する方法
Pythonで現在実行中のメソッド(関数)の名前を取得するには、inspect
モジュールを使用します。
import inspect
def my_function():
print(inspect.currentframe().f_code.co_name)
#;
Pythonで現在実行中のメソッド(関数)の名前を取得するには、inspect
モジュールを使用します。
import inspect
def my_function():
print(inspect.currentframe().f_code.co_name)
#;