跟随选品策略过于普遍、大众化,在选品时可以不予考虑这种方法。( )
A. 对
B. 错
现有程序: a = [1,2,3] b = [4,5,6] zipped = zip(a,b) print(list(zipped)) 输出为:
A. ((1, 4), (2, 5), (3, 6))
B. ([1, 4], [2, 5], [3, 6])
C. [(1, 4), (2, 5), (3, 6)]
D. [(1, 2), (2, 4), (5, 6)]
现有程序: 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)