day10作业
# 2、写函数,接收n个数字,求这些参数数字的和。
法1 def func(*args): print(sum(*args)) func([1,2,3,4,5,6]) 法2: def sum_res(*args): sum=0 for i in args: sum+=i return sum print(sum_res(1,2,3,4,5,6))
# 3、读代码,回答:代码中,打印出来的值a,b,c分别是什么?为什么?
a=10 b=20 def test5(a,b): print(a,b) c = test5(b,a) print(c)
# 4、读代码,回答:代码中,打印出来的值a,b,c分别是什么?为什么?
a=10 b=20 def test5(a,b): a=3 b=5 print(a,b) c = test5(b,a) print(c)