str.strip()
时间: 2023-11-01 11:16:13 浏览: 62
Python内置函数strip()用法简述
`str.strip()` 是一个字符串方法,用于去除字符串两端的空白字符(包括空格、制表符、换行符等)。它返回一个去除空白字符后的新字符串。例如:
```python
s = ' hello world '
s_stripped = s.strip()
print(s_stripped) # 输出:'hello world'
```
`str.strip()` 方法还可以接受一个参数 `chars`,用于指定需要去除的字符集合。例如:
```python
s = '***hello world***'
s_stripped = s.strip('*')
print(s_stripped) # 输出:'hello world'
```
这里指定的字符集合是 `'*'`,所以去除了两端的 `*` 字符。
阅读全文