美文网首页Python专题
Python strip()方法

Python strip()方法

作者: 右哼哼丨左哼哼 | 来源:发表于2018-02-06 10:28 被阅读24次

描述

Python strip() 方法用于移除字符串头尾指定的字符(默认为空格)。

语法

strip()方法语法:

str.strip([chars]);

参数

chars -- 移除字符串头尾指定的字符。

返回值

返回移除字符串头尾指定的字符生成的新字符串。

实例

以下实例展示了strip()函数的使用方法:
实例(Python 2.0+)

#!/usr/bin/python
# -*- coding: UTF-8 -*-
str = "0000000     Runoob  0000000"; 
print str.strip( '0' );  # 去除首尾字符 0
str2 = "   Runoob      ";   # 去除首尾空格
print str2.strip();

以上实例输出结果如下:

     Runoob  
Runoob

PS:

只移除字符串头尾指定的字符,中间部分不会移除:

#!/usr/bin/python
str = "0000000this is string 0000example....wow!!!0000000";
print str.strip( '0' );

输出结果中间部分的 0 还是存在的:

this is string 0000example....wow!!!

来源菜鸟教程:http://www.runoob.com/python/att-string-strip.html

相关文章

  • Python strip()、split()和rstrip()方

    1. Python strip() 语法描述: Python strip() 方法用于移除字符串头尾指定的字符(默...

  • Python strip()方法

    描述 Python strip() 方法用于移除字符串头尾指定的字符(默认为空格)。 语法 strip()方法语法...

  • Python strip()方法

    描述 Python strip() 方法用于移除字符串头尾指定的字符(默认为空格)或字符序列。 注意:该方法只能删...

  • Python strip()方法

    strip()方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列 注意:该方法只能删除开头或者是结尾...

  • 3行python代码实现假聊天机器人(慎入:这是假机器人!!!)

    在Python Console输入以下代码: 一个例子: 学习时间到了:Python strip()方法 Pyth...

  • Python相关文章索引(13)

    基本常识 Python-去除字符串中不想要的字符 Python split()方法 strip()默认去除的空白字...

  • Python3 strip()方法

    前言 我们在处理字符串的时候,总会遇到这种问题,一个字符串,中间是我们想要的内容,两边会多出来一些内容确定、数量不...

  • strip()方法

    Python strip() 方法用于移除字符串头尾指定的字符(默认为空格)或字符序列。 注意:该方法只能删除开头...

  • Python

    python string strip, removes all whitespace at beginning ...

  • python strip()

    声明:s为字符串,rm为要删除的字符序列 s.strip(rm) 删除s字符串中开头、结尾处,位于 rm删除序列的...

网友评论

    本文标题:Python strip()方法

    本文链接:https://www.haomeiwen.com/subject/zbawzxtx.html