填空题
已知字典x={i:str(i+3) for i in range(3)},那么表达式''.join([item[1] for item in x.items()]) 的值为()。
'345'
填空题 已知字典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)},那么表达式 sum(x)的值为()。
填空题 已知列表x中包含超过5个以上的元素,那么表达式x==x[:5]+x[5:]的值为()。