"""
字符串的查询操作
1.index()是查找子串substr第一次出现的位置,如果查找的子串不存在,则抛出valueError
2.rindex()查找substr最后一次出现的位置,如果查找的子串不存在,则抛出valueError
3.find()是查找子串substr第一次出现的位置,如果查找的子串不存在,则抛出-14.rfind()查找substr最后一次出现的位置,如果查找的子串不存在,则抛出-1"""
s='hello,hello'print(s.index('lo'))#3print(s.find('lo'))#3print(s.rindex('lo'))#9print(s.rfind('lo'))#9print(s.find('k'))#-1#print(s.index('k'))#ValueError: substring not foundprint(s.rindex('k'))#ValueError: substring not found
print(s.find('k'))#-1