def calc_sum(*args): ax = 0 for n in args: ax = ax + n return ax ... 但是,如果对外层变量赋值,由于Python解释器会把 x 当作函数 fn() 的局部 ...
確定! 回上一頁