1. 程式人生 > >str常用方法

str常用方法

python

#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())


str常用方法