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


现有程序: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


Tag:Python程序设计基础 程序 时间:2022-07-07 15:45:19