Appearance
在一个函数内部有至少一个函数, 且内部函数至少使用了一个外部函数的局部变量
def outer(test): def inter(): return test return inter