Python字符串strip()
方法返回从字符串的开始和结束(默认空格字符)中删除指定所有字符的字符串的副本。
语法
以下是strip()
方法的语法 -
str.strip([chars]);
参数
- chars - 要从字符串的开头或结尾移除的字符。
返回值
- 此方法返回从字符串的开头和结尾删除所有指定字符串(
chars
)的字符串的副本。
示例
以下示例显示了strip()
方法的用法 -
#!/usr/bin/python3
str = "*****this is string example....wow!!!*****"
print (str.strip( '*' ))
当运行上面的程序,它产生以下结果 -
this is string example....wow!!!