Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 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 '''