23、表达式 list(zip([1,2], [3,4])) 的值为__________
第1题:
已知vec=[[1,2],[3,4]],则表达式[colforrowinvecforcolinrow]的值为__________________________。
第2题:
表达式dict(zip([1,2],[3,4]))的值为_________________________________。
第3题:
表达式[1,2]+[3]的值为__________________。
第4题:
方程f(x)=x23-11.1x22+38.8x-41.77=0的有根区间为(9)。
A.[1,2]
B.[3,4]
C.[1,2]、[3,4]
D.[1,2]、[3,4]、[5,6]
第5题:
表达式list(str([3,4]))==[3,4]的值为()。
第6题:
dict(zip((1,2),(3,4)))的返回值是()。
第7题:
表达式{1,2}*2的值为{1,2,1,2}。
第8题:
[1,2,3,4]
[(1,2),(3,4)]
[(1,3),(2,4)]
报错
第9题:
第10题:
第11题:
第12题:
字符串
元组
列表
字典
第13题:
表达式list(range(5))的值为________________。
第14题:
表达式list(map(list,zip(*[[1,2,3],[4,5,6]])))的值为________________。
第15题:
表达式list(zip([1,2],[3,4]))的值为________________________。
第16题:
已知x=[[1,2,3,],[4,5,6]],那么表达式sum([i*j for i,j in zip(*x)])的值为()。
第17题:
表达式list(map(lambdax:len(x),[’a’,’bb’,’ccc’]))的值为()。
第18题:
print(list(zip([1,2],[3,4])))输出结果为:()
第19题:
已知vec=[[1,2],[3,4]],则表达式[col for row in vec for col in row]的值为()。
第20题:
第21题:
第22题:
第23题:
第24题: