试题详情

以下程序的输出结果是: def func(a,*b): for item in b: a += item return a m = 0print(func(m,1,1,2,3,5,7,12,21,33))

A33

B0

C7

D85