python中rstrip和strip区别
时间: 2023-04-21 22:00:10 浏览: 121
浅谈python中截取字符函数strip,lstrip,rstrip
rstrip和strip都是Python中的字符串方法,用于去除字符串的空格或指定字符。
strip方法会去除字符串开头和结尾的空格或指定字符,例如:
```
s = " hello world "
s = s.strip() # 去除开头和结尾的空格
print(s) # 输出:hello world
```
rstrip方法只会去除字符串结尾的空格或指定字符,例如:
```
s = " hello world "
s = s.rstrip() # 去除结尾的空格
print(s) # 输出: hello world
```
因此,strip方法会去除字符串开头和结尾的空格或指定字符,而rstrip方法只会去除字符串结尾的空格或指定字符。
阅读全文