题目内容

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

A. ("math","chinese","phyical")
B. [("math","chinese","phyical")]
C. [(80.90.96)]
D. (80.90.96)

查看答案
更多问题

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

A. ("math","chinese","phyical")
B. [("math","chinese","phyical")]
C. [(80.90.96)]
D. (80.90.96)

现有程序: listA=[("math",80),("chinese",90),("phyical",96)] classes, score = zip(*listA) class1, class2, class3 = classes print(class2) 输出为:( )

A. math
B. chinese
C. phyical
D. 90

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

A. math
B. chinese
C. 96
D. 90

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

A. ("math","chinese","phyical")
B. [("math","chinese","phyical")]
C. [(80,90,96)]
D. (80,90,96)

答案查题题库