Function Python Tutorial

def simple():
    spam = 'ni'
    def action():
        print spam       
    return action
act = simple()           
act()