表达式{1,2,3}&{3,4,5}的值为()。

题目
填空题
表达式{1,2,3}&{3,4,5}的值为()。
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

假设已从标准库functools导入reduce()函数,那么表达式reduce(lambdax,y:x+y,[1,2,3])的值为____。


正确答案:6

第2题:

表达式list(str([1,2,3]))==[1,2,3]的值为______________。


正确答案:False

第3题:

已知有函数定义defdemo(*p):returnsum(p),那么表达式demo(1,2,3)的值为______、表达式demo(1,2,3,4)的值为_________。


正确答案:6、10

第4题:

表达式{1,2,3}|{3,4,5}的值为_____________________。


正确答案:{1,2,3,4,5}

第5题:

已知x=[[1,2,3,],[4,5,6]],那么表达式sum([i*jfori,jinzip(*x)])的值为______。


正确答案:32

第6题:

已知有列表x=[[1,2,3],[4,5,6]],那么表达式[[row[i]forrowinx]foriinrange(len(x[0]))]的值为___________________________。


正确答案:[[1,4],[2,5],[3,6]]

第7题:

表达式3notin[1,2,3]的值为__________。


正确答案:False

第8题:

表达式3in{1,2,3}的值为_________。


正确答案:True

第9题:

表达式{1,2,3}=={1,3,2}的值为___________。


正确答案:True

第10题:

表达式list(map(list,zip(*[[1,2,3],[4,5,6]])))的值为________________。


正确答案:[[1,4],[2,5],[3,6]]