python中的.strip函数
时间: 2023-10-16 16:17:40 浏览: 101
Python中的.strip()函数是用于删除字符串开头和结尾处的指定字符(默认为空格)的函数。该函数返回一个新的字符串,不会修改原始字符串。
语法:`string.strip([chars])`
参数说明:
- chars(可选):要删除的字符集合,如果没有指定,则默认删除字符串开头和结尾处的空格字符。
示例:
```python
str1 = " Hello World! "
print(str1.strip()) # 输出: 'Hello World!'
str2 = "###Hello World!###"
print(str2.strip('#')) # 输出: 'Hello World!'
```
在上面的示例中,`str1`和`str2`均为包含空格或`#`字符的字符串。调用`.strip()`函数删除字符串开头和结尾处的这些字符后,得到了新的字符串。
相关问题
python string.strip函数
Python中的`strip()`函数是用来去除字符串开头和结尾的空格或指定字符的。它的语法如下:
```python
string.strip([chars])
```
其中,`string`表示要进行操作的字符串,`chars`是可选参数,表示要去除的字符。如果不指定`chars`,则默认去除开头和结尾的空格。
下面是一个例子:
```python
s = " hello world! "
print(s.strip()) # 输出:hello world!
```
如果指定了`chars`参数,则会去除开头和结尾的该字符。例如:
```python
s = "----hello world!----"
print(s.strip("-")) # 输出:hello world!
```
python中.strip()
Python的strip()方法用于移除字符串头尾指定的字符,默认为空格。该方法的语法如下:str.strip([chars]),其中chars为可选参数,表示要移除的字符。strip()方法会返回移除指定字符之后生成的新字符串。例如,如果我们有一个字符串str = "0000000this is string example....wow!!!0000000",我们可以使用str.strip('0')来移除字符串头尾的0,得到结果"this is string example....wow!!!"。
参考资料:
: http://www.runoob.com/python/att-string-strip.html
: https://www.cnblogs.com/HITSZ/p/7097775.html<span class="em">1</span><span class="em">2</span>
#### 引用[.reference_title]
- *1* [python中的strip()函数](https://blog.csdn.net/aoheng0603/article/details/101277980)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* [python strip()方法](https://blog.csdn.net/BBxxf90/article/details/84897670)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文