strip()函数
Posted kkouba
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了strip()函数相关的知识,希望对你有一定的参考价值。
先说一下strip()函数
描述:python strip()只能用于移除string 开头或结尾的charts(默认情况下为‘/n‘,‘/t‘,‘/r‘,‘ ‘) string.strip(chars=None,/),有返回值
string="hello,world"
a=string.strip(‘l‘)
print(a)
a="hello,world"
string="hello,world"
string.strip(‘l‘)
print(string)
"hello,world"
string="hello,world"
a=string.strip(‘h‘)
print(a)
a="ello.world"
以上是关于strip()函数的主要内容,如果未能解决你的问题,请参考以下文章