関数内の関数が与えられた場合、外部関数から内部関数を呼び出すにはどうすればよいですか?
元。
def a():
print 'a'
def b():
print 'b'
def c():
print 'c'
def d():
# how would I now call a, b and c from here?
def e():
# how would I call a, b and c from here as well?
はい、私はそれが恐ろしいコード構造であり、実行すべきではないことを知っています-しかし、どのようにそれを行いますか?
編集:デコレータを使用してこれを行う方法はありますか?