码迷,mamicode.com
首页 > 编程语言 > 详细

python strip()

时间:2019-04-06 16:41:57      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:style   strip   ***   pytho   span   bsp   div   去除   pre   

1 s = "*****egon*****"
2 print(s.strip("*"))#去除egon两边的*号
输出结果为
egon
lstrip
s = "*****egon*****"
print(s.lstrip("*"))#去除egon左边的*号

输出结果为

egon*****

rstrip

s = "*****egon*****"
print(s.rstrip("*"))

输出结果为

*****egon

 

python strip()

标签:style   strip   ***   pytho   span   bsp   div   去除   pre   

原文地址:https://www.cnblogs.com/star1986/p/10662109.html

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