表达式’:’.join(’abcdefg’.split(’cd’))的值为()。
第1题:
从字符串S("abcdefg")返回子串B("cd")的正确表达式为( )。A.Mid(S,3,2)B.Right(Left(S,4),2)C.Left(Right(S,5)2)D.以上都可以
第2题:
表达式’abcdefg’.split(’d’)的值为()。
第3题:
A、x
B、charstr[80];str=”abcdefg”;
C、char*pstr=”abcdefg”
D、char*pstr=NULL;pstr=”abcdefg”;
第4题:
表达式’:’.join(’1,2,3,4,5’.split(’,’))的值为()。
第5题:
代码:’abcdefg’.substring(2,3)的结果是()。
第6题:
表达式isinstance(’abcdefg’,str)的值为()。
第7题:
已知x=’abcdefg’,则表达式x[3:]+x[:3]的值为()。
第8题:
从字符串S("abcdefg")中返回子串B("cd")的正确表达式为______。
A.Mid(S,3,2)
B.Right(Left(S,4),2)
C.t,eft(mght(S,5),2)
D.以上都可以
第9题:
表达式’abc’in[’abcdefg’]的值为()。
第10题:
表达式’a’.join(’abc’.partition(’a’))的值为()。