Contact: aviboots(AT)netvision.net.il
41,445 questions
53,992 answers
573 users
def f(): s = "local variable" if 's' in locals(): print ('Variable exist') else: print ('Variable not exist') f() ''' run: Variable exist '''