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]