字符串是 Python 中最常用的数据类型。我们可以使用引号( ' 或 " )来创建字符串。创建字符串很简单,只要为变量分配一个值即可。例如:
s = 'hello'
Python访问字符串中的值
Python 不支持单字符类型,单字符在 Python 中也是作为一个字符串使用。Python 访问子字符串,可以使用方括号 [] 来截取字符串,字符串的截取的语法格式如下:
变量[头下标,尾下标]
Python字符串的索引
Python字符串的更新
你可以截取一部分字符和其他字符拼接
s1 = 'hello '
s2 = 'world'
print(s1+s2)
输出结果为'hello world'
Python字符串运算符
下表实例变量 a 值为字符串 "Hello",b 变量值为 "Python":
+ | 字符串连接 | a + b 输出结果: HelloPython |
* | 重复输出字符串 | a*2 输出结果:HelloHello |
[] | 通过索引获取字符串中字符 | a[1] 输出结果 e |
[ : ] | 截取字符串中的一部分,遵循左闭右开原则,str[0:2] 是不包含第 3 个字符的。 | a[1:4] 输出结果 ell |
in | 成员运算符 - 如果字符串中包含给定的字符返回 True | 'H' in a 输出结果 True |
not in | 成员运算符 - 如果字符串中不包含给定的字符返回 True | 'M' not in a 输出结果 True |
python字符串的方法:
"".isdigit() 判断字符串是否为全数字
"".isalpha() 判断字符串是否为全字母
"".isalnum() 判断字符串是否为字母+数字
"".islower() 判断字符串是否全小写
"".isupper() 判断字符串是否全大写
"".istitle() 判断字符串是否首字母大写 其他字母小写(全字母字符串)
"".count(sub, start, end) 从start到end中间出现几次sub子字符串
"".find(sub, start, end) 从start到end中间第一次匹配到sub的位置 找不到返回-1 rfind
"".index(sub, start, end) 从start到end中间第一次匹配到sub的位置 找不到报错 rindex
"".split(sub) 使用sub子字符串将元素字符串切割为列表
"".strip() 剔除左右空格 "".lstrip()剔除左侧空格 "".rstrip()剔除右侧空格
"".replace(old_str, new_str) 将原始字符串中的old_str 替换为new_str
"{0}---{1}---{0}".format(1, 2, 3, 4) 格式化字符串
"".capitalize() 首字母转大写
"123".center(11, '+') 左边补4个+ 123 右边补4个+