文章目录
- python字符串知识总结
- 1.下标
- 2.切片
- 3.常用操作方法
- (1)find()
- (2)index()
- (3)rfind()
- (4)rindex()
- (5)count()
- (6)replace()
- (7)split()
- (8)join()
- (9)capitalize()
- (10)title()
- (11)lower()
- (12)strip()
- (13)ljust()
- (14)startswith()
- (15)isalpha()
- (16)isalnum()
- (17)isspace()
python字符串知识总结
1.下标
“下标” 又叫 “索引” ,就是编号。
比如⽕火⻋车座位号,座位号的作⽤用:按照编号快速找到对应的座位。
同理,下标的作⽤用即是通过下标快速找到对应的数据。
name = "abcdef"
print(name[1])
print(name[0])
print(name[2])
输出
b
a
c
注意: 索引从0开始
2.切片
切片是指对操作的对象截取其中⼀部分的操作。 字符串、列表、元组都⽀持切片操作。
语法:
序列[开始位置下标:结束位置下标:步长]
代码示例:
name = "abcdefg"
print(name[2:5:1]) # cde
print(name[2:5]) # cde
print(name[:5]) # abcde
print(name[1:]) # bcdefg
print(name[:]) # abcdefg
print(name[::2]) # aceg
print(name[:-1]) # abcdef, 负1表示倒数第⼀一个数据
print(name[-4:-1]) # def
print(name[::-1]) # gfedcba
3.常用操作方法
(1)find()
find():检测某个子串是否包含在这个字符串中,如果在返回这个子串开始的位置下标,否则返回-1。
代码示例:
mystr = "hello world and itcast and itheima and Python"
print(mystr.find('and')) # 12
print(mystr.find('and', 15, 30)) # 23
print(mystr.find('ands')) # -1
(2)index()
index():检测某个子串是否含在某个字符串中,如果在 则返回这个子串开始的位置下标,否则报异常。
语法:字符串序列.index(子串, 开始位置下标, 结束位置下标)
注意:开始和结束位置下标可以省略,表示在整个字符串序列中查找。
代码示例:
mystr = "hello world and itcast and itheima and Python"
print(mystr.index('and')) # 12
print(mystr.index('and', 15, 30)) # 23
print(mystr.index('ands')) # 报错
(3)rfind()
和find()功能相同,但查找⽅向为右侧开始。
(4)rindex()
和index()功能相同,但查找⽅向为右侧开始。
(5)count()
返回某个子串在字符串中出现的次数
语法:字符串序列.count(⼦串, 开始位置下标, 结束位置下标)
代码示例:
mystr = "hello world and itcast and itheima and Python"
print(mystr.count('and')) # 3
print(mystr.count('ands')) # 0
print(mystr.count('and', 0, 20)) # 1
(6)replace()
替换字符串
语法:字符串序列.replace(旧⼦串, 新子串, 替换次数)
代码示例:
mystr = "hello world and itcast and itheima and Python"
# 结果: hello world he itcast he itheima he Python
print(mystr.replace('and', 'he'))
# 结果: hello world he itcast he itheima he Python
print(mystr.replace('and', 'he', 10))
# 结果: hello world and itcast and itheima and Python
print(mystr)
注意: 字符串修改属于不可改变类型
(7)split()
语法:字符串序列.split(分割字符, num)
注意: num表示的是分割字符出现的次数,即将来返回数据个数为num+1个。
代码示例:
mystr = "hello world and itcast and itheima and Python"
# 结果: ['hello world ', ' itcast ', ' itheima ', ' Python']
print(mystr.split('and'))
# 结果: ['hello world ', ' itcast ', ' itheima and Python']
print(mystr.split('and', 2))
# 结果: ['hello', 'world', 'and', 'itcast', 'and', 'itheima', 'and', 'Python']
print(mystr.split(' '))
# 结果: ['hello', 'world', 'and itcast and itheima and Python']
print(mystr.split(' ', 2))
(8)join()
语法:字符或子串.join(多字符串组成的序列)
代码示例:
list1 = ['chuan', 'zhi', 'bo', 'ke']
t1 = ('aa', 'b', 'cc', 'ddd')
# 结果: chuan_zhi_bo_ke
print('_'.join(list1))
# 结果: aa...b...cc...ddd
print('...'.join(t1))
(9)capitalize()
将字符串第一个字符转换成大写。
代码示例:
mystr = "hello world and itcast and itheima and Python"
# 结果: Hello world and itcast and itheima and python
print(mystr.capitalize())
注意: 转换后,只有第一个字母大写,其余字母全部小写。
(10)title()
将字符串每个单词首字母转换成大写。
代码示例:
mystr = "hello world and itcast and itheima and Python"
# 结果: Hello World And Itcast And Itheima And Python
print(mystr.title())
(11)lower()
将字符串中⼤写转小写。
upper():将字符串中小写转大写。
代码示例:
mystr = "hello world and itcast and itheima and Python"
# 结果: hello world and itcast and itheima and python
print(mystr.lower())
mystr = "hello world and itcast and itheima and Python"
# 结果: HELLO WORLD AND ITCAST AND ITHEIMA AND PYTHON
print(mystr.upper())
(12)strip()
删除字符串两侧空白字符
lstrip():删除字符串左侧空⽩字符。
rstrip():删除字符串右侧空⽩字符。
(13)ljust()
返回一个原字符串左对齐,并使用指定字符(默认空格)填充⾄对应长度 的新字符串
语法:字符串序列.ljust(长度, 填充字符)
rjust():返回一个原字符串右对齐,并使用指定字符(默认空格)填充至对应长度 的新字符串,语法和
ljust()相同。
center():返回一个原字符串居中对齐,并使用指定字符(默认空格)填充至对应长度 的新字符串,语
法和ljust()相同。
(14)startswith()
检查字符串是否是以指定子串开头,是则返回 True,否则返回 False。如果设置开
始和结束位置下标,则在指定范围内检查。
语法:字符串序列.startswith(子串, 开始位置下标, 结束位置下标)
代码示例:
mystr = "hello world and itcast and itheima and Python "
# 结果: True
print(mystr.startswith('hello'))
# 结果False
print(mystr.startswith('hello', 5, 20))
endswith()::检查字符串是否是以指定子串结尾,是则返回 True,否则返回 False。如果设置开
始和结束位置下标,则在指定范围内检查。
语法:字符串序列.endswith(⼦串, 开始位置下标, 结束位置下标)
代码示例:
mystr = "hello world and itcast and itheima and Python"
# 结果: True
print(mystr.endswith('Python'))
# 结果: False
print(mystr.endswith('python'))
# 结果: False
print(mystr.endswith('Python', 2, 20))
(15)isalpha()
如果字符串至少有一个字符并且所有字符都是字母则返回 True, 否则返回 False
代码示例:
mystr1 = 'hello'
mystr2 = 'hello12345'
# 结果: True
print(mystr1.isalpha())
# 结果: False
print(mystr2.isalpha())
(16)isalnum()
如果字符串⾄少有一个字符并且所有字符都是字母或数字则返 回 True,否则返回
False。
代码示例:
mystr1 = 'aaa12345'
mystr2 = '12345-'
# 结果: True
print(mystr1.isalnum())
# 结果: False
print(mystr2.isalnum())
(17)isspace()
如果字符串中只包含空白,则返回 True,否则返回 False。
代码示例:
mystr1 = '1 2 3 4 5'
mystr2 = ' '
# 结果: False
print(mystr1.isspace())
# 结果: True
print(mystr2.isspace())