python中的字符串切割 maxsplit
作者:LanLanDeMing 时间:2022-04-16 14:35:35
python 字符串切割 maxsplit
my_str.split(str1, maxsplit)
str1 可以不写,默认是空白字符(" " “\t” “\n”)
将my_str 这个字符串按照str1 进行切割, maxsplit 割几次
my_str = "hello world itcast and itcastcpp"
my_str1 = my_str.split(" ")
print(my_str1)
my_str2 = my_str.split(" ", 1)
print(my_str2)
my_str3 = my_str.split() # 用的最多
print(my_str3)
my_str4 = my_str.split("itcast")
print(my_str4)
# 输出结果是
['hello', 'world', 'itcast', 'and', 'itcastcpp']
['hello', 'world itcast and itcastcpp']
['hello', 'world', 'itcast', 'and', 'itcastcpp']
['hello world ', ' and ', 'cpp']
python字符串切割split和rsplit函数
1. split(sep, maxsplit)
切分字符串,返回切分后的列表
sep,分隔符,默认空格
maxsplit,切分次数,默认最大次数,从起始位置开始计数
示例1:默认
s = 'a b c'
res = s.split()
res
['a', 'b', 'c']
示例2:指定参数
s = 'a b c'
res = s.split(sep=' ', maxsplit=1)
res
['a', 'b c']
示例3:位置参数
s = 'a.b.c'
res = s.split('.', 1)
res
['a', 'b.c']
2. rsplit(sep, maxsplit)
类似split,区别为从结尾位置开始计数
sep,分隔符,默认空格
maxsplit,切分次数,默认最大次数,从起始结尾开始计数
示例1:默认
s = 'a b c'
res = s.rsplit()
res
['a', 'b', 'c']
示例2:指定参数
s = 'a b c'
res = s.rsplit(sep=' ', maxsplit=1)
res
['a b', 'c']
示例3:位置参数
s = 'a.b.c'
res = s.rsplit('.', 1)
res
['a.b', 'c']
来源:https://blog.csdn.net/LanlanDeming/article/details/103318399
标签:python,字符串,切割,maxsplit
0
投稿
猜你喜欢
python的列表生成式,生成器和generator对象你了解吗
2022-05-15 15:10:04
Python实现将SQLite中的数据直接输出为CVS的方法示例
2022-10-01 00:05:32
OpenCV-PS扩散毛玻璃效果的实现代码
2022-03-17 22:45:52
详细讲解SQL Server数据库的文件恢复技术
2009-01-15 12:54:00
PyTorch搭建ANN实现时间序列风速预测
2022-11-28 23:38:28
MySQL数据库查询性能优化的4个技巧干货
2024-01-13 23:25:16
Python 3行代码提取音乐高潮部分
2021-11-14 13:15:54
MySQL学习笔记之数据的增、删、改实现方法
2024-01-27 04:07:41
Python 面向对象之封装、继承、多态操作实例分析
2021-04-09 10:03:54
给大家整理了19个pythonic的编程习惯(小结)
2024-01-02 08:00:05
pandas添加新列的5种常见方法
2022-08-09 16:45:03
使用Python实现批量ping操作方法
2021-04-06 02:55:34
Minio设置文件链接永久有效的完整步骤
2023-06-10 22:26:10
Python下利用BeautifulSoup解析HTML的实现
2021-11-20 03:33:54
Python程序员鲜为人知但你应该知道的17个问题
2021-06-14 11:37:14
详解golang中的闭包与defer
2024-04-26 17:32:58
简单总结Python中序列与字典的相同和不同之处
2022-02-08 06:31:52
SQLServer 2008 新增T-SQL 简写语法
2024-01-28 23:49:25
php实现简单的权限管理的示例代码
2024-05-05 09:18:37
javascript trim、left、right等函数,兼容IE,FireFox
2009-09-18 14:55:00