现有程序: 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)
zip函数返回的是一个序列,可以直接通过print()函数输出。
A. 对
B. 错
zip变量可以通过list()函数转换为列表。
A. 对
B. 错
zip()函数可以将两个序列中对应位置的元素压缩为元组,如果对应位置有缺失,程序会报错。
A. 对
B. 错