Python strip() 方法

返回上一级

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

空格 ( ' ' ) 、制表符 ( \t ) 、换行符 (\r\n) 统称为空白符

语法

str.strip([chars]);

参数

参数 说明
chars 移除字符串头尾指定的字符

返回值

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

范例

下面的代码使用 strip() 方法去掉字符串头尾指定的符号

>>> '\r\n \t Hello\r\n \t '.strip()
'Hello'
>>> '=========Hello------------'.strip('=-')
'Hello'

返回上一级

Python3 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.