1:字符串的定义
把字符连成串,在Python中使用', ",''',"""引起来的内容被称为字符串。 在Python中字符串是一种不可变数据类型,也就是说不可以在原位置对其进行修改。
如下图:
只可以通过下标访问,不能通过下标修改其值:
>>> s = 'ixusy88'
>>> s[0]
'i'
>>> s[0]=1
Traceback (most recent call last):
File "<pyshell#33>", line 1, in <module>
s[0]=1
TypeError: 'str' object does not support item assignment
>>>
2:常见的字符串字面量和操作
常见的字符串字面量和操作:更多方法执行下面语句查看:
print([item for item in dir(str) if not item.startswith('__') ]) 查看,然后使用help函数查看对应函数,如下:
>>> print([item for item in dir(str) if not item.startswith('__') ])
['capitalize', 'casefold', 'center', 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'format_map', 'index', 'isalnum', 'isalpha', 'isdecimal', 'isdigit', 'isidentifier', 'islower', 'isnumeric', 'isprintable', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'maketrans', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill']
>>> help(str.count)
Help on method_descriptor:
count(...)
S.count(sub[, start[, end]]) -> int
Return the number of non-overlapping occurrences of substring sub in
string S[start:end]. Optional arguments start and end are
interpreted as in slice notation.
>>>
3:字符串的索引和切片
3.1:索引
索引就是下标. 切记, 下标从0开始,到字符串长度减1:
>>> s = 'hello'
>>> len(s)
5
>>> s[0]
'h'
>>> s[1]
'e'
>>> s[2]
'l'
>>> s[3]
'l'
>>> s[4]
'o'
>>> s[5]
Traceback (most recent call last):
File "<pyshell#62>", line 1, in <module>
s[5]
IndexError: string index out of range
>>>
下标也可以是负数:
-1表示倒数第一个
-2表示倒数第二个
>>> s='hello'
>>> s[-1]
'o'
>>> s[-2]
'l'
>>> s[-3]
'l'
>>> s[-4]
'e'
>>> s[-5]
'h'
>>> s[-6]
Traceback (most recent call last):
File "<pyshell#99>", line 1, in <module>
s[-6]
IndexError: string index out of range
>>>
3.2切片
我们可以使用下标来截取部分字符串的内容
语法: str[start: end:step] start默认为0,end默认为字符长度,step默认为1
start: 起始位置
end: 结束位置
step:步长
规则: 顾头不顾尾, 从start开始截取. 截取到end位置. 但不包括end (start<= x < end)
step为步长: 如果是正数, 则从左往右取. 如果是负数. 则从右往左取. 默认是1;
>>> s = '中华人民共和国'
>>> print(len(s))
7
>>>
# 不带参数
#截取 下标0开始,右边的所有字符,相当于复制了整个字符串
# 默认 0开始
#print(s[:])
>>> print(s[:])
中华人民共和国
>>>
#截取 下标-1开始,左边的所有字符,相当于复制了反转之后的字符串
#默认 -1开始
>>> print(s[::-1])
国和共民人华中
>>>
# 截取 下标为2开始右边的所有字符,结束位置默认为字符串的长度
>>> print(s,s[2:])
中华人民共和国 人民共和国
>>>
# 截取 下标为2开始左边的所有字符,
>>> print(s,s[2::-1])
中华人民共和国 人华中
>>>
# 截取 下标为2开始右边的,直到下标5结束的所有字符(不包下标5的字符)
>>> print(s,s[2:5])
中华人民共和国 人民共
>>>
# 截取 下标为2开始左边的,直到下标5结束的所有字符;结果为空,因为下标2左边的下标均小于2,故不可能到达下标5
>>> print(s,s[2:5:-1])
中华人民共和国
>>>
# 截取 下标0开始,右边,直到下标为5结束的所有字符(不包下标5的字符);
>>> print(s,s[:5])
中华人民共和国 中华人民共
>>>
# 截取 下标-1开始,左边,直到下标为5结束的所有字符(不包下标5的字符);开始位置默认为-1
>>> print(s,s[:5:-1])
中华人民共和国 国
>>>
4:修改字符串
字符串是不可变数据类型,是不能在原位置修改的。这里的修改是指通过拼接,替换等操作生成新的字符串;
# 拼接
s = 'ixusy88'
#print(s,s[:-2],s[-2:])
#如要在88前面增加字符串 'abc'
s = s[:-2] + "abc" + s[-2:]
print(s) # ixusyabc88
# 替换
# 要把88 替换为abc
s = 'ixusy88'
s = s.replace('88','abc')
print(s) # ixusyabc
# 通过转换为列表来修改,修改之后在连接为字符串
# 要求把第三个字符u替换为abc
s = 'ixusy88'
l = list(s)
# print(l)
l[2] = 'abc'
s=''.join(l)
print(s) # ixabcsy88