全局变量修改全局变量a=100 def test(): global a a=200 print a多个返回值缺省参数def test3(a,b=1): print a,b test3(a) test3(a,b=2)不定长参数