Contact: aviboots(AT)netvision.net.il
39,864 questions
51,786 answers
573 users
s = "python 2" def update_s_local(): s = "update_s_local() python 3" def update_s_global(): global s s = "update_s_global() python 3" update_s_local() print(s) update_s_global() print(s) ''' run: python 2 update_s_global() python 3 '''