网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

已知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[1],-item[2]))的值为____________________________________。 ” 相关考题
考题 已知列表x=[1,3,2],那么执行语句a,b,c=sorted(x)之后,b的值为____。

考题 已知x为非空列表,那么表达式x.sort()==sorted(x)的值为__________。

考题 已知x为非空列表,那么表达式sorted(x,reverse=True)==list(reversed(x))的值一定是True。此题为判断题(对,错)。

考题 已知字典x={i:str(i+3)foriinrange(3)},那么表达式sum(item[0]foriteminx.items())的值为___________。

考题 表达式sorted([111,2,33],key=lambdax:len(str(x)))的值为________________。

考题 已知x=[[1,3,3],[2,3,1]],那么表达式sorted(x,key=lambdaitem:item[0]+item[2])的值为______________________________________。

考题 表达式sorted([13,1,237,89,100],key=lambdax:len(str(x)))的值为___________________________________。

考题 6、已知列表 lst=[1,2,3,4,5] ,则表达式 sorted(lst, reverse=True, key=lambda x:x%5) 的结果为______________.

考题 已知x为非空列表,那么表达式 sorted(x, reverse=True) == list(reversed(x)) 的值一定是True。