python3字符串操作总结字符串截取
>>>s = 'hello'
>>>s[0:3]
'he'
>>>s[:] #截取全部字符
'hello'
消除空格及特殊符号
s.strip() #消除字符串s左右两边的空⽩字符(包括'\t','\n','\r','')
s.strip('0') #消除字符串s左右两边的特殊字符(如'0'),字符串中间的'0'不会删除
例如:
>>>s = '000hello00world000'
>>>s.strip('0')
'hello00world'
s.strip('12')等价于s.strip('21')
例如:
>>>s = '12hello21'
>>>s.strip('12')
'hello'
lstrip,rstrip ⽤法与strip类似,分别⽤于消除左、右的字符
字符串复制
s1 = 'hello'
s2 = s1 # s2 = 'hello'
若指定长度
s1 = 'hello'
s2 = s1[0:2] #s2 = 'he'
字符串连接
s1 = 'hello'
s2 = 'world'
s3 = s1 + s2  #s3 = 'helloworld'
或者
import operator
s3 = at(s1,s2) #concat为字符串拼接函数
字符串⽐较
(1)利⽤operator模块⽅法⽐较(python3.X取消了cmd函数)
包含的⽅法有:
lt(a, b) ———— ⼩于
le(a, b) ———— ⼩于等于
eq(a, b) ———— 等于
ne(a, b) ———— 不等于
ge(a, b) ———— ⼤于等于
gt(a, b) ———— ⼤于
例⼦:
>>>import operator
>>>operator.eq('abc','edf') #根据ASCII码⽐较
Flase
>>&('abc','ab')
True
(2)关系运算符⽐较(>,<,>=,<=,==,!=)
>>>s1 = 'abc'
>>>s2 = 'ab'
>>>s1 > s2
True
>>>s1 == s2
False
求字符串长度
>>>s1 = 'hello'
>>>len(s1)
5
求字符串中最⼤字符,最⼩字符
>>>s1 = 'hello'
>>>max(s1) #求字符串s1中最⼤字符
'o'
>>>min(s1) #求字符串s2中最⼩字符
'e'
字符串⼤⼩写转换
主要有如下⽅法:
upper ———— 转换为⼤写
lower ———— 转换为⼩写
title ———— 转换为标题(每个单词⾸字母⼤写)
capitalize ———— ⾸字母⼤写
swapcase ———— ⼤写变⼩写,⼩写变⼤写
例⼦:
>>>s1 = 'hello'
>>>s2 = 'WORLD'
>>>s3 = 'hello world'
>>>s1.upper()
'HELLO'
>>>s2.lower()
'world'
>>>s3.title()
'Hello World'
>>>s3.capitalize()
'Hello world'
>>>s3.title().swapcase()
'hELLO wORLD'
字符串翻转
>>>s1 = 'hello'
>>>s1[::-1]
字符串截取后面三位'olleh'
字符串分割
split⽅法,根据参数进⾏分割,返回⼀个列表
例⼦:
>>>s1 = 'hello,world'
>>>s1.split(',')
['hello','world']
字符串序列连接
join⽅法:
语法为str.join(seq) #seq为元素序列
例⼦:
>>>l = ['hello','world']
>>>str = '-'
>>>str.join(l)
'hello-world'
字符串内查
find⽅法:
检测字符串内是否包含⼦串str
语法为:
str.find(str[,start,end]) #str为要查的字符串;strat为查起始位置,默认为0;end为查终⽌位置,默认为字符串长度。若到返回起始位置索引,否则返回-1例⼦:
>>>s1 = 'today is a fine day'
>>>s1.find('is')
6
>>>s1.find('is',3)
6
>>>s1.find('is',7,10)
-1
字符串内替换
replace⽅法:
把字符串中的旧串替换成新串
语法为:
例⼦:
>>>s1 = 'today is a find day'
>>&place('find','rainy')
'today is a rainy day'
判断字符串组成
主要有如下⽅法:
isdigit ———— 检测字符串时候只由数字组成
isalnum ———— 检测字符串是否只由数字和字母组成isalpha ———— 检测字符串是否只由字母组成
islower ———— 检测字符串是否只含有⼩写字母
isupper ———— 检测字符串是否只含有⼤写字母
isspace ———— 检测字符串是否只含有空格
istitle ———— 检测字符串是否是标题(每个单词⾸字母⼤写)例⼦:
>>>s1  = 'hello'
>>>s1.islower()
True
>>>s1.isdigit()
False

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。