Python中的rstrip函數(shù)用于刪除字符串末尾的指定字符(默認為空格)或字符序列。下面是如何正確使用Python的rstrip函數(shù)的示例:
s = "hello world "
s = s.rstrip()
print(s) # 輸出: "hello world"
s = "hello world 123"
s = s.rstrip("123")
print(s) # 輸出: "hello world "
s = "hello world123"
s = s.rstrip("123")
print(s) # 輸出: "hello world"
需要注意的是,rstrip函數(shù)只會刪除字符串末尾的字符,而不會影響字符串中間的字符。