有如下Python程序段,执行该程序后,
有如下Python程序段,执行该程序后,结果是?( )
def fun(*p): return sum(p) print(fun(1,3,5))
4
6
8
9