现有程序:listA=[("math",80),("chinese",90),("phyical",96)]a,b=zip(*listA)a,b=b

现有程序:listA=[("math",80),("chinese",90),("phyical",96)]a,b=zip(*listA)a,b=b,aprint(a)输出为:()

A.("math","chinese","phyical")

B.[("math","chinese","phyical")]

C.[(80,90,96)]

D.(80,90,96)

正确答案:D

猜你喜欢