1. isdigit() 检测字符串是否只由数字组成
描述
isdigit() 方法检测字符串是否只由数字组成。
语法
str.isdigit()
参数
无
返回值
如果字符串只包含数字则返回 True 否则返回 False。
实例
以下实例展示了isdigit()方法的实例:
>>> "12a".isdigit()
False
>>> "12".isdigit()
True
>>> "12.3".isdigit()
False
>>>
2. isalpha() 检测字符串是否只由字母组成
描述
isalpha() 方法检测字符串是否只由字母组成。
语法
str.isalpha()
参数
无
返回值
如果字符串至少有一个字符并且所有字符都是字母则返回 True,否则返回 False。
实例
以下实例展示了isalpha()方法的实例:
>>> "12.3".isalpha()
False
>>> "abc".isalpha()
True
>>>
3. upper() 将字符串中的小写字母转为大写字母
描述
upper() 方法将字符串中的小写字母转为大写字母。
语法
str.upper()
参数
NA。
返回值
返回小写字母转为大写字母的字符串。
实例
以下实例展示了 upper()函数的使用方法:
>>> str = "this is string example....wow!!!"
>>> str.upper()
'THIS IS STRING EXAMPLE....WOW!!!'
>>>
4. lower() 将字符串中的大写字母转换为小写字母
描述
lower() 方法转换字符串中所有大写字符为小写。
语法
str.lower()
参数
无
返回值
返回将字符串中所有大写字符转换为小写后生成的字符串。
实例
以下实例展示了lower()的使用方法:
>>> str = "Runoob EXAMPLE....WOW!!!"
>>> str.lower()
'runoob example....wow!!!'
>>>
5. replace() 旧字符串替换成新字符串
描述
字符串 replace() 方法把字符串中的 old(旧字符串) 替换成 new(新字符串),如果指定第三个参数max,则替换不超过 max 次。
语法
str.replace(old, new[, max])
参数
old -- 将被替换的子字符串。
new -- 新字符串,用于替换old子字符串。
max -- 可选字符串, 替换不超过 max 次,默认全部替换
返回值
返回字符串中的 old(旧字符串) 替换成 new(新字符串)后生成的新字符串,如果指定第三个参数max,则替换不超过 max 次。
实例
以下实例展示了replace()函数的使用方法:
>>> str = "this is string example....wow!!! this is really string";
>>> print(str.replace("is","was"))
thwas was string example....wow!!! thwas was really string
>>> str = "this is string example....wow!!! this is really string";
>>> print(str.replace("is","was",3))
thwas was string example....wow!!! thwas is really string
>>>
6. split() 指定分隔符对字符串进行切片返回list
描述
字符串 split() 通过指定分隔符对字符串进行切片,如果参数 num 有指定值,则分隔 num+1 个子字符串
语法
str.split(str="", num=string.count(str))
参数
str -- 分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等。
num -- 分割次数。默认为 -1, 即分隔所有。
返回值
返回分割后的字符串列表。
实例
以下实例展示了 split() 函数的使用方法:
1、分隔符,默认为**所有的空字符**,包括空格、换行(\n)、制表符(\t)等
>>> str = "Line1-abcdef \nLine2-abc \nLine4-abcd"
>>> str.split()
['Line1-abcdef', 'Line2-abc', 'Line4-abcd']
2、分隔符,可以使用任意字符
>>> t = "Google#Runoob#Taobao#Facebook"
>>> t.split("#")
['Google', 'Runoob', 'Taobao', 'Facebook']
3、指定分割次数
>>> str.split(" ",1)
['Line1-abcdef', '\nLine2-abc \nLine4-abcd']
7. strip() 移除字符串头尾指定的字符
描述:
Python strip() 方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列。
注意:该方法只能删除开头或是结尾的字符,不能删除中间部分的字符。
只要头尾包含有指定字符序列中的字符就删除
语法
str.strip([chars]);
参数
chars -- 移除字符串头尾指定的字符序列。
返回值
返回移除字符串头尾指定的字符生成的新字符串。
实例
以下实例展示了strip()函数的使用方法:
#去除首尾字符 0
>>> str = "00000003210Runoob01230000000"
>>> str.strip('0')
'3210Runoob0123'
# 去除首尾空格
>>> str2 = " Runoob "
>>> str2.strip()
'Runoob'
>>>
#只要头尾包含有指定字符序列中的字符就删除
>>> str = "123abcrunoob321"
>>> str.strip("12")
'3abcrunoob3'
>>>
8. startswith() 检查字符串是否是以指定子字符串开头
描述
startswith() 方法用于检查字符串是否是以指定子字符串开头,如果是则返回 True,否则返回 False。如果参数 beg 和 end 指定值,则在指定范围内检查。
语法
str.startswith(str, beg=0,end=len(string))
参数
str -- 检测的字符串。
strbeg -- 可选参数用于设置字符串检测的起始位置。
strend -- 可选参数用于设置字符串检测的结束位置。
返回值
如果检测到字符串则返回True,否则返回False。
实例
以下实例展示了startswith()函数的使用方法:
>>> str = "this is string example....wow!!!"
>>> str.startswith( 'this' )
True
>>> str.startswith( 'is',2,4)
True
>>> str.startswith( 'this',2,4)
False
>>>
9. endswith() 用于判断字符串是否以指定后缀结尾
描述
endswith() 方法用于判断字符串是否以指定后缀结尾,如果以指定后缀结尾返回True,否则返回False。可选参数"start"与"end"为检索字符串的开始与结束位置。
语法
str.endswith(suffix[, start[, end]])
参数
suffix -- 该参数可以是一个字符串或者是一个元素。
start -- 字符串中的开始位置。
end -- 字符中结束位置。
返回值
如果字符串含有指定的后缀返回True,否则返回False。
实例
以下实例展示了endswith()方法的实例:
>>> str = "this is string example....wow!!!"
>>> suffix = "wow!!!"
>>> str.endswith(suffix)
True
>>> str.endswith(suffix,20)
True
>>> suffix = "is"
>>> str.endswith(suffix,2,4)
True
>>> str.endswith(suffix,2,6)
False
>>>
网友评论