capitalize()
count()
decode()
encode()
endswith()
startswith()
find()
index()
isalpha()
lstrip()/rstrip()/strip()
upper() #将元素全改为大写
str1='im a super man'
newstr=str1.encode(encoding='UTF-8')
print(newstr.decode(encoding='UTF-8'))
print(str1.capitalize())#将开头字母大写
print(str1.count('m',2,len(str1)))#统计元素出现的次数,参数:元素,起始位置 ,长度。
print(str1.startswith('m'))#判断字符串以某个元素开头 ,true、false
print(str1.endswith('m'))#判断字符串以某个元素结尾 ,true、false
print(str1.find('up'))#根据元素进行查找0或-1
print(str1.index('a'))#返回元素的索引,-1
print(str1.isalpha())#判断字符串中元素是否都是字母,true\false
print(str1.lstrip())#去掉字符串左侧空格
print(str1.rstrip())#去掉字符串右侧空格
print(str1.strip())#去掉字符串前后空格
print(str1.replace(' ',''))#替换元素
print(str1.split(' '))#根据元素分割,列表
网友评论