考题
表达式{1,2,3,4,5}^{4,5,6,7}的值为_________________________。
考题
表达式list(map(lambdax:x+5,[1,2,3,4,5]))的值为______________________。
考题
表达式’abcdefg’.split(’d’)的值为()。
考题
已知字典x={i:str(i+3)foriinrange(3)},那么表达式’’.join(x.values())的值为()。
考题
表达式eval(’*’.join(map(str,range(1,6))))的值为()。
考题
表达式’:’.join(’1,2,3,4,5’.split(’,’))的值为()。
考题
表达式’,’.join(’a b ccc/n/n/n ddd’.split())的值为()。
考题
表达式’a’.join(’abc’.partition(’a’))的值为()。
考题
表达式’’.join(’asdssfff’.split(’sd’))的值为()。
考题
已知x为非空字符串,那么表达式’,’.join(x.split(’,’))==x的值一定为True。
考题
假设正则表达式模块re已正确导入,那么表达式’’.join(re.findall(’/d+’,’abcd1234’))的值为()。
考题
表达式’’.join(re.split(’[sd]’,’asdssfff’))的值为()。
考题
表达式re.split(’/.+’,’alpha.beta...gamma..delta’)的值为()。
考题
表达式{1,2,3,4,5}^{4,5,6,7}的值为{1,2,3,6,7}。
考题
填空题表达式re.split(’/.+’,’alpha.beta...gamma..delta’)的值为()。
考题
填空题表达式’:’.join(’helloworld.’.split())的值为()。
考题
填空题表达式’:’.join(’a b c d’.split(maxsplit=2))的值为()。
考题
填空题表达式[x for x in[1,2,3,4,5]ifx3]的值为()。
考题
填空题表达式’,’.join(’a b ccc/n/n/n ddd’.split())的值为()。
考题
判断题已知x为非空字符串,那么表达式’’.join(x.split())==x的值一定为True。A
对B
错
考题
填空题假设正则表达式模块re已正确导入,那么表达式’’.join(re.findall(’/d+’,’abcd1234’))的值为()。
考题
填空题表达式eval(’*’.join(map(str,range(1,6))))的值为()。
考题
填空题表达式list(map(lambdax:x+5,[1,2,3,4,5]))的值为()。
考题
填空题表达式’’.join(re.split(’[sd]’,’asdssfff’))的值为()。
考题
填空题已知x=’a b c d’,那么表达式’,’.join(x.split())的值为。
考题
填空题表达式’a’.join(’abc’.partition(’a’))的值为()。
考题
填空题表达式’abcdefg’.split(’d’)的值为()。