Python中join和split用法实例
作者:junjie 时间:2021-09-01 21:18:55
join用来连接字符串,split恰好相反,拆分字符串的。
不用多解释,看完代码,其意自现了。
>>>li = ['my','name','is','bob']
>>>' '.join(li)
'my name is bob'
>>>s = '_'.join(li)
>>>s
'my_name_is_bob'
>>>s.split('_')
['my', 'name', 'is', 'bob']
其join和split的英文版解释如下:
join(...)
S.join(sequence) -> string
Return a string which is the concatenation of the strings in the
sequence. The separator between elements is S.
split(...)
S.split([sep [,maxsplit]]) -> list of strings
Return a list of the words in the string S, using sep as the
delimiter string. If maxsplit is given, at most maxsplit
splits are done. If sep is not specified or is None, any
whitespace string is a separator and empty strings are removed
from the result.
标签:Python,join,split,用法
0
投稿
猜你喜欢
MySQL中DATE_FORMAT()函数的具体使用
2024-01-16 14:03:49
Python闭包装饰器使用方法汇总
2022-12-21 05:47:17
python写的一个文本编辑器
2021-10-12 08:38:04
带你了解python装饰器
2023-08-26 23:10:57
解决Python列表字符不区分大小写的问题
2022-09-10 20:43:52
PHP用mysql数据库存储session的代码
2023-09-05 00:44:50
python调用私有属性的方法总结
2023-09-06 03:16:18
在flash中使用XML动态菜单
2007-09-06 19:16:00
基于Python实现2种反转链表方法代码实例
2021-11-27 21:19:02
JavaScript缓动动画函数的封装方法
2023-08-07 10:48:26
MySQL七大JOIN的具体使用
2024-01-28 04:11:31
js检查全角字符正则表达式[\\uFE30-\\uFFA0]
2008-10-30 12:39:00
自然描述与自然任务
2010-01-26 15:51:00
五种方法解决 Web2.0设计中的匹配度
2007-09-22 10:58:00
window下mysql 8.0.15 安装配置方法图文教程
2024-01-24 18:31:15
Python+Sklearn实现异常检测
2022-09-06 14:28:47
关于utf-8格式中截取中英文字符串长度无效的问题
2008-11-25 14:00:00
Python开发装包八种方法详解
2021-01-12 22:27:28
python dict乱码如何解决
2023-04-11 06:43:51
asp数据转换函数示例
2008-04-13 06:52:00