1、str.lower() 将字符串统一变为小写
代码:str.lower("ABCdefGH") 或者"ABCdefGH".lower()
结果展示:'abcdefgh'
2、str.upper() 将字符串统一变为大写
代码: str.upper("ABCdefGH") 或者"ABCdefGH".upper()
结果展示:'ABCDEFGH'
3、str.split() 返回一个列表
代码:str.split("A,B,C")
结果展示:['A,B,C']
4、str.count() 返回子串sub在str中出现的次数
代码: "an apple a day".count('a')
5、str.replace(“old字符串”,"new字符串")
代码: "three apples".replace("three","two")
展示结果:'two apples'
6、str.center(width[,fillchar]) 字符串的位置为:宽度为20的字符居中
代码:"python".center(20,"*")
展示结果:'*******python*******'
7、str.strip(chars) 字符串中去掉位于左侧或右侧的chars之后返回的字符
代码:"= python=".strip("= n")
结果展示:'pytho'
8、str.join(iter) 在变量iter除最后一个元素外每个元素后增加str,主要用于字符串分割等
代码:",".join("12345")
展示结果:'1,2,3,4,5'