Python Python 関数名を取得する hawk 2021-02-02 / 2021-03-07 __name__ で取得できる。 def test_fun(): print("hello") test_fun() print(test_fun.__name__) # test_fun