设有变量s='Pyhon',则"{0:3}".format(s)表达式的输出结果 是()。
A. 'hon'
B. 'Pyhon'
C. 'PYTHON'
D. 'PYT'
查看答案
设有变量赋值s="Hello World",则以下选项中可以输出"World"子字符串的是()。
A. print(s[-5:-1])
B. print(s[-5:0])
C. print(s[-4:-1])
D. print(s[-5:])
在以下选项中可以倒置"World"字符串的是()。
A. "World"[::-1]
B. "World"[::]
C. "World"[0::-1]
D. "World"[-1::-1]
原始字符串是在普通字符串前加r,使用它的优势是:在字符串中特殊字符不需要被转义。()
A. 对
B. 错
长字符串是,使用三个单引号(''')或三个双引号(""")括起来的字符串,使用它的优势是:在字符串中特殊字符不需要被转义。()
A. 对
B. 错