mystr = “hello word goodbye”
str = “bye”
Find函数:检测一个字符串中是否包含另一个字符串,找到了返回索引值,找不到了返回-1
print(mystr.find(str,0,len(mystr)))
print(mystr.find(str,0,13))
index函数:检测一个字符串是否包含另一个字符串,找到了范围索引值,找不到了报错
print(mystr.index(str,0,len(mystr)))
print(mystr.index(str,0,12))
count函数:返回字符串在开始和结束之间另一个字符串出现的次数
print(mystr.count(str,0,len(mystr)))
replace函数:把字符串中的字符按照要求次数替换成新的字符
print(mystr.replace(str,“GOOD”,1))
查看字符串的方法
print(dir(str))
自学方法
print(help(str.count))
print(help(str.find))
print(help(str.replace))
print(help(str.index))