题目内容

下面哪个函数返回中出现substr的第一个字母的标号,如果S中没有substr则返回-1:

A. S.rindex(substr,[start,[end]])
B. S.rfind(substr,[start,[end]])
C. S.index(substr,[start,[end]])
D. S.find(substr,[start,[end]])

查看答案
更多问题

下面哪一个不是python语言的运算符:

A. and
B. !=
C. not
D. <

要表示字符串s1="welcometoscitc"中的切片"scitc",以下哪个表达式是错误的:

A. s1[12:16]
B. s1[-5:]
C. s1[11:]
D. s1[11:16]

要将字典dict1转换为列表的方法是:

A. tuple(dict1)
B. list(dict1)
C. str(dict1)
D. type(dict1)

要判断一个文件后缀名是否为.txt文件,应使用以下哪个字符串函数最方便:

A. s.startwith()
B. s.endswith(t)
C. s.istitle()
D. tins

答案查题题库