Function Python Tutorial

X = 99 
def selector(  ): 
    global X  # Force X to be global (everywhere)
    print X 
    X = 88 
selector(  )