python 中split 和 strip的实例详解

Jewel ·
更新时间:2024-11-15
· 751 次阅读

 python 中split 和 strip的实例详解

一直以来都分不清楚strip和split的功能,实际上strip是删除的意思;而split则是分割的意思。

python中strip() 函数和 split() 函数的理解,有需要的朋友可以参考下。

splite 和strip 都是Python 对字符串的处理。

splite 意为分割,划分。

a='123456' a.split('3')

输出为 [‘12', ‘456']

可以看到,使用何种字符切割,该字符也被略去。例如这里的字符“3”

strip 意为去除,删除。

a='123456' a.strip('1')

这里可以运行下,输出'23456'

值得注意的是,strip只能从两段开始删除,无法从中间删除。

同时不改变原字符串。这个方法,在实际使用的过程中并不多见。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

您可能感兴趣的文章:python strip() 函数和 split() 函数的详解及实例浅谈Python3中strip()、lstrip()、rstrip()用法详解python strip()函数 介绍Python中replace方法实例分析对python 中re.sub,replace(),strip()的区别详解



strip split Python

需要 登录 后方可回复, 如果你还没有账号请 注册新账号