Python中的rstrip()函數和strip()函數都是用來去除字符串中指定的字符或空格的方法,但它們之間有一些區別。
s = " hello "
print(s.rstrip()) # 輸出:" hello"
print(s.rstrip('o')) # 輸出:" hello "
s = " hello "
print(s.strip()) # 輸出:"hello"
print(s.strip('h')) # 輸出:" hello "
總的來說,strip()函數會同時去除字符串的左右兩側指定字符,而rstrip()函數只去除字符串右側的指定字符。