Python

Python 関数名を取得する

__name__ で取得できる。

def test_fun():
    print("hello")

test_fun()

print(test_fun.__name__)  # test_fun