#coding=utf-8


mystr = 'hello world world'

#找到第一个w的位置,返回下标6

print(mystr.find("world"))




print(mystr.rfind("world"))


print(mystr.rindex("world"))

print(mystr.rfind("world"))


#rfind,rindex,都是查找,find找不到,返回-1,index找不到,返回异常,rfind,rindex,从右向前找


#统计多少个,world相同的

print(mystr.count("world"))


print(mystr.replace("world","WORLD"));

#1代表替换的次数

print(mystr.replace("world","WORLD",1));


#['hello', 'world', 'world'],切割成列表

print(mystr.split(" "))


#第一个单词大写

print(mystr.capitalize())


#所有单词第一个字母大写

print(mystr.title())