码迷,mamicode.com
首页 > 其他好文 > 详细

strip()函数

时间:2019-07-20 11:40:43      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:情况下   art   charts   移除   style   开头   描述   返回   none   

先说一下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()函数

标签:情况下   art   charts   移除   style   开头   描述   返回   none   

原文地址:https://www.cnblogs.com/kkouba/p/11217080.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!