def test1(): a=50 b=80 print(a,b) def test2(): a=22 b=44 print(a,b) test1() test2() Q2. #Program to illustrate Global variable access globvar = "Hello" def test1(): global globvar globvar = "Good ...