ネストされていない関数と同様の動作で、Python の関数内に関数を定義できるかどうかを尋ねていると思われます。
答えはイエスです。
def some_function():
def some_other_function():
# code that does stuff
pass
# code that does stuff
pass
これら 2 つの関数は、 のスコープがsome_other_function
のスコープ内にあることを除いて、同じように機能しsome_function
ます。