self-confidence,the source of all the power

导航

2012年10月23日 #

rstrip,strip,lstrip

摘要: rstrip,strip,lstrip三个函数主要用于移除字串中的满足条件的字符,传入参数是一个字符数组,它们分别表示匹配并去掉右边、两边、左边的字符。当没有参数传入时,strip()表示去除首尾空格,其它两个函数同理。code:>>> str = '\tgood to say you,you are a good guys!doddoog! \n'>>> nospace = str.strip()>>> nospace'good to say you,you are a good guys!doddoog!' 阅读全文

posted @ 2012-10-23 10:34 漩涡鸣人 阅读(400) 评论(0) 推荐(0) 编辑