相关试题
判断题 表达式'abc' in ['abcdefg']的值为__________。
判断题 已知x为非空列表,那么表达式x.sort() == sorted(x)的值为__________。
判断题 表达式3 in {1, 2, 3}的值为________。
判断题 表达式'ac' in 'abce'的值为__________。
判断题 表达式'abc' in 'abcdefg'的值为__________。
判断题 已知x为非空列表,那么表达式x.reverse() == list(reversed(x))的值为__________。
判断题 已知列表x中包含超过5个以上的元素,那么表达式x == x[:5]+x[5:]的值为______。
判断题 表达式'Beautiful is better than ugly!'.startswith('Be', 5)的值为________。