考题
已知字典x={i:str(i+3)foriinrange(3)},那么表达式sum(x)的值为______。
考题
已知字典x={i:str(i+3)foriinrange(3)},那么表达式sum(item[0]foriteminx.items())的值为___________。
考题
已知字典x={i:str(i+3) for i in range(3)},那么表达式sum(item[0] for item in x.items( ))的值为() 。
考题
已知x={1:1,2:2},那么执行语句x[3]=3之后,表达式sorted(x.items())的值为()。
考题
已知x=[3,5,3,7],那么表达式[x.index(i)for i in x i fi==3]的值为()。
考题
已知x=[[1,2,3,],[4,5,6]],那么表达式sum([i*j for i,j in zip(*x)])的值为()。
考题
已知字典x={i:str(i+3)foriinrange(3)},那么表达式’’.join(x.values())的值为()。
考题
表达式eval(’*’.join(map(str,range(1,6))))的值为()。
考题
已知x=[[] for i in range(3)],那么执行语句x[0].append(1)之后,x的值为()。
考题
已知x=[[1,3,3],[2,3,1]],那么表达式sorted(x,key=lambdaitem:item[0]+item[2])的值为()。
考题
已知x={1:1,2:2},那么执行语句x.update({2:3,3:3})之后,表达式sorted(x.items())的值为()。
考题
已知字典x={i:str(i+3) for i in range(3)},那么表达式 sum(x)的值为()。
考题
已知x=range(1,4)和y=range(4,7),那么表达式sum([i*jfori,jinzip(x,y)])的值为()。
考题
已知x=[[1,3,3],[2,3,1]],那么表达式sorted(x,key=lambdaitem:(item[1],-item[2]))的值为()。
考题
表达式[str(i)for i in range(3)]的值为()。
考题
已知x=’aa b ccc dddd’,那么表达式’’.join([v for i,v in enumerate(x[:-1])ifv==x[i+1]])的值为()。
考题
填空题已知字典x={i:str(i+3)foriinrange(3)},那么表达式’’.join(x.values())的值为()。
考题
填空题已知x=[[1,3,3],[2,3,1]],那么表达式sorted(x,key=lambdaitem:(item[1],-item[2]))的值为()。
考题
填空题已知x=[[1,3,3],[2,3,1]],那么表达式sorted(x,key=lambdaitem:item[0]+item[2])的值为()。
考题
填空题已知字典x={i:str(i+3) for i in range(3)},那么表达式sum(item[0] for item in x.items( ))的值为() 。
考题
填空题已知字典x={i:str(i+3) for i in range(3)},那么表达式''.join([item[1] for item in x.items( )]) 的值为()。
考题
填空题已知x=’aa b ccc dddd’,那么表达式’’.join([v for i,v in enumerate(x[:-1])ifv==x[i+1]])的值为()。
考题
填空题已知x=range(1,4)和y=range(4,7),那么表达式sum([i*jfori,jinzip(x,y)])的值为()。
考题
填空题已知x={1:1,2:2},那么执行语句x[3]=3之后,表达式sorted(x.items())的值为()。
考题
填空题表达式[str(i)for i in range(3)]的值为()。
考题
填空题已知字典x={i:str(i+3) for i in range(3)},那么表达式 sum(x)的值为()。
考题
填空题已知x=[[] for i in range(3)],那么执行语句x[0].append(1)之后,x的值为()。