溫馨提示×

如何正確使用Python rstrip函數(shù)

小樊
85
2024-07-25 03:42:09
欄目: 編程語言

Python中的rstrip函數(shù)用于刪除字符串末尾的指定字符(默認為空格)或字符序列。下面是如何正確使用Python的rstrip函數(shù)的示例:

  1. 刪除末尾的空格符:
s = "hello world    "
s = s.rstrip()
print(s)  # 輸出: "hello world"
  1. 刪除末尾的特定字符:
s = "hello world 123"
s = s.rstrip("123")
print(s)  # 輸出: "hello world "
  1. 刪除末尾的字符序列:
s = "hello world123"
s = s.rstrip("123")
print(s)  # 輸出: "hello world"

需要注意的是,rstrip函數(shù)只會刪除字符串末尾的字符,而不會影響字符串中間的字符。

0