阅读量:0
Python中的rstrip()函数和strip()函数都是用来去除字符串中指定的字符或空格的方法,但它们之间有一些区别。
- rstrip()函数:r表示“right”,即从字符串右侧开始检索并去除指定字符或空格。rstrip()函数默认去除字符串末尾的空格,也可以指定去除的字符。例如:
s = " hello " print(s.rstrip()) # 输出:" hello" print(s.rstrip('o')) # 输出:" hello "
- strip()函数:strip()函数是去除字符串两侧的指定字符或空格。如果不指定要去除的字符,则默认去除两侧的空格。例如:
s = " hello " print(s.strip()) # 输出:"hello" print(s.strip('h')) # 输出:" hello "
总的来说,strip()函数会同时去除字符串的左右两侧指定字符,而rstrip()函数只去除字符串右侧的指定字符。