python字符串操作详析
作者:Silva72? 时间:2022-09-14 04:57:08
字符串是不可变类型,可以重新赋值,但不可以索引改变其中一个值,只能拼接字符串建立新变量
索引和切片
索引:越界会报错切片:
越界会自动修改
不包含右端索引
需重小到大的写,否则返回空字符串
motto = '积善有家,必有余庆。'
# 索引
print(motto[0])
# print(motto[10]) 报错
# 切片 不包含右侧 从小到大
print(motto[0:9])
print(motto[0:10])
print(motto[0:100])
print(motto[0:])
print(motto[-10:])
print(motto[-100:])
print(motto[-5:-1])
print(motto[0:10:2])
print(motto[:5])
print(motto[3:2]) # 若大到小,则返回''
print(motto[2:3])
一、5种字符串检索方法
s = "ILovePython"
# 1. str.count('',起点,终点)
print(s.count('o', 1, 5))
print(s.count('o'))
# 2. str.find('',起点,终点) 找不到返回-1
print(s.find('o',3))
print(s.find('o',3,5))
print(s.find('o'))
# 3. str.index('',起点,终点) 找不到则报错
print(s.index('o'))
print(s.index('Py'))
# 4. str.startswith('',起点,终点)
print(s.startswith("IL"))
print(s.startswith("L"))
# 5. str.endswith('',起点,终点)
print(s.endswith("on"))
print(s.endswith("n"))
print(s.endswith("e"))
1
2
9
-1
2
2
5
True
False
True
True
False
二、join字符串拼接方法 [列表/元组 --> 字符串]
将列表元组,拼接成字符串
# join()函数
list_val = ['www', 'baidu', 'com']
str_val = '.'.join(list_val)
print(str_val)
tuple = ('Users', 'andy', 'code')
str_val = '/'.join(tuple)
print(str_val)
三、3种字符串分割方法 [字符串 --> 列表/元组]
# 1. split('',分割次数) 默认从空格 \n \r \t切掉
s = "我 爱\t你\nPy thon"
print(s.split())
s1 = "python我爱你Python"
print(s1.split("y"))
s2 = "python我爱你Python"
print(s1.split("y", 1))
# 2. splitlines() 默认从换行符rt切掉
s = "我 爱\t你\nPy thon"
print(s.splitlines())
# 3. partition('') 不切掉 分成3元素元组
s = "我爱你Python"
print(s.partition('爱'))
['我', '爱', '你', 'Py', 'thon']
['p', 'thon我爱你P', 'thon']
['p', 'thon我爱你Python']
['我 爱\t你', 'Py thon']
('我', '爱', '你Python')
split()和splitlines()默认情况下的对比:
split()
和partition()
对比:split()切掉后变列表,partition()不切掉变元组
四、5种大小写转换方法
string_val = 'I love Python'
print(string_val.upper())
print(string_val.lower())
print(string_val.title()) # 每个单词第一个字母变大写
print(string_val.capitalize()) # 仅第一个字母变大写
print(string_val.swapcase())
I LOVE PYTHON
i love python
I Love Python
I love python
i LOVE pYTHON
五、3种字符串修剪方法
默认首尾的空格和换行符\t\r进行修剪
可用参数设定首尾的其他符号进行修剪
lstrip()
只删首rstrip()
只删尾
s = " ILovepython"
print(s)
print(s.strip())
print(s.strip(' I'))
print(s.strip('n'))
s1 = "00000003210Runoob0123000000"
print(s1.strip('0'))
print(s1.lstrip('0'))
print(s1.rstrip('0'))
ILovepython
ILovepython
Lovepython
3210Runoob0123
3210Runoob0123000000
00000003210Runoob0123
来源:https://blog.csdn.net/SergioSilva/article/details/122758861
标签:python,字符串,操作
0
投稿
猜你喜欢
python自动从arxiv下载paper的示例代码
2021-11-21 04:30:27
Python入门教程5. 字典基本操作【定义、运算、常用函数】 <font color=red>原创</font>
2021-04-29 19:08:04
python语言元素知识点详解
2023-07-30 03:33:08
一步步教你MySQL查询优化分析教程
2024-01-27 09:56:23
在Python的Django框架中包装视图函数
2021-01-08 03:45:45
SQLServer中bigint转int带符号时报错问题解决方法
2024-01-16 00:13:01
使用UglifyJS合并/压缩JavaScript的方法
2024-05-03 15:57:29
Linux VPS备份教程 数据库/网站文件自动定时备份
2024-01-14 21:41:42
PHP编程文件处理类SplFileObject和SplFileInfo用法实例分析
2023-11-17 00:16:13
使用xtrabackup实现mysql备份
2024-01-21 07:57:57
Asp Object 之:AddHeader
2008-05-05 12:58:00
innerHTML在Mozilla Firefox和Opera下执行的一个特例情况。
2023-09-16 11:23:46
解决Jupyter因卸载重装导致的问题修复
2023-09-30 18:22:31
关于python通过新建环境安装tfx的问题
2022-06-28 19:47:21
如何基于python对接钉钉并获取access_token
2023-11-27 04:25:07
快速了解python leveldb
2023-06-03 11:12:19
Vue中使用stylus报错的解决
2024-05-02 17:03:55
增强网站的魅力 网页制作技巧三则
2007-10-04 10:06:00
手机网站开发必修课[2009总结版]
2010-01-05 17:02:00
让XML在ASP中发挥其长处
2008-01-16 19:07:00