Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 answers
573 users
def function(c, d): global a a = 13 c,d = c,d b = 111 c = 333 print(a, b, c, d) a, b, c, d = 1, 2, 3, 4 function(88, 99) print(a, b, c, d) ''' run: 13 111 333 99 13 2 3 4 '''