浅谈Python中函数的参数传递 1.普通的参数传递>>>defadd(a,b):returna+b>>>printadd(1,2)3>>>printadd('abc','123')abc12 python函数参数传递