第1题:
已知x为非空列表,那么表达式x.sort()==sorted(x)的值为__________。
第2题:
表达式sorted([111,2,33],key=lambdax:len(str(x)))的值为________________。
第3题:
已知x=[[1,3,3],[2,3,1]],那么表达式sorted(x,key=lambdaitem:(item[1],-item[2]))的值为____________________________________。
第4题:
表达式sorted({’a’:3,’b’:9,’c’:78})的值为()。
第5题:
若a为int类型,且其值为3,则执行完表达式a+=a-=a*a后,a的值是______。
A.-3
B.9
C.-12
D.6
第6题:
已知x为非空列表,那么表达式sorted(x,reverse=True)==list(reversed(x))的值一定是True。
此题为判断题(对,错)。
第7题:
表达式sorted([13,1,237,89,100],key=lambdax:len(str(x)))的值为___________________________________。
第8题:
表达式sorted(random.sample(range(5),5))的值为_________________________。
第9题:
A.6
B.18
C.9
D.12
第10题:
已知函数定义def func(**p):return’’.join(sorted(p)),那么表达式func(x=1,y=2,z=3)的值为()。