python lstrip 和rstrip
时间: 2023-04-26 11:01:56 浏览: 194
python中的lstrip和rstrip是字符串方法,用于去除字符串左侧和右侧的空格或指定字符。
lstrip方法用于去除字符串左侧的空格或指定字符,语法为:string.lstrip([chars]),其中chars为可选参数,表示要去除的字符集合。
rstrip方法用于去除字符串右侧的空格或指定字符,语法为:string.rstrip([chars]),其中chars为可选参数,表示要去除的字符集合。
相关问题
python中的lstrip和rstrip
lstrip和rstrip是Python中的字符串方法。
lstrip方法用于去除字符串左边的空格或指定字符,返回去除后的新字符串。
rstrip方法用于去除字符串右边的空格或指定字符,返回去除后的新字符串。
例如:
```python
s = " hello world "
s = s.lstrip() # 去除左边空格
print(s) # 输出:'hello world '
s = " hello world "
s = s.rstrip() # 去除右边空格
print(s) # 输出:' hello world'
```
也可以指定要去除的字符,例如:
```python
s = " hello world "
s = s.lstrip(' h') # 去除左边空格和'h'
print(s) # 输出:'ello world '
s = " hello world "
s = s.rstrip(' d') # 去除右边空格和'd'
print(s) # 输出:' hello worl'
```
python lstrip
python中的lstrip和rstrip是字符串方法,用于去除字符串左侧和右侧的空格或指定字符。
lstrip方法用于去除字符串左侧的空格或指定字符,语法为:string.lstrip([chars]),其中chars为可选参数,表示要去除的字符集合。
rstrip方法用于去除字符串右侧的空格或指定字符,语法为:string.rstrip([chars]),其中chars为可选参数,表示要去除的字符集合。
阅读全文