dak ブログ

python、rubyなどのプログラミング、MySQL、サーバーの設定などの備忘録。レゴの写真も。

python で実行中のメソッド名を取得する方法

2022-08-01 23:45:53 | python
python で実行中のメソッド名を取得する方法のメモ。
実行中のメソッド名は inspect.currentframe().f_code.co_name で取得できます。

■プログラム
import inspect

def method1():
    print(inspect.currentframe().f_code.co_name)
    return

def method2():
    print(inspect.currentframe().f_code.co_name)
    return

def main():
    method1()
    method2()
    return 0

if __name__ == '__main__':
    res = main()
    exit(res)

■実行結果
method1
method2


この記事についてブログを書く
« tsv ファイルから excel ファ... | トップ | python で xlsx ファイルから... »

python」カテゴリの最新記事