print(('python'*3)[0:-1])的输出为____。
A. pythonpythonpytho
B. pythonpythonpyth
C. pythonpythonpyt
D. ythonpythonpython
message = 'i like python'print(message[:8].replace(' ', '#')[3:5])的输出为____。
A. i
B. li
C. ik
D. e
字符串是一个字符序列,给定字符串s,以下表示s索引为4的字符的是()。
A.s[4]
B.s[3]
C.s[:3]
D.s[0:-3]
设s='abcdefg',下列运行结果正确的是()。
A. s[3]值是'd'
B. s[3:5]值是'de'
C. s[:5]值是'abcdf'
D. s[::-1]值是'gfedcba'