python 函数值之间传递 先看一个例子: -- coding: UTF-8 -- def chagne_number( b ): b = 1000 b = 1 chagne_number(b) print( b ) 最后输出的结果为: 1