目錄
使用 Python 刪除字串
Python 是一種非常有用的程式語言,它可以用來處理字串。在本文中,我們將討論如何使用 Python 來刪除字串。
Python 提供了一系列的函式,可以用來處理字串,其中一個函式就是 str.replace()
,它可以用來將字串中的某個字元或字串替換為另一個字元或字串。
例如,如果我們想要將字串 Hello World
中的空格 替換為
-
,我們可以使用以下程式碼:
string = "Hello World" string = string.replace(" ", "-") print(string)
執行程式碼後,將會得到 Hello-World
。
另一個可以用來刪除字串的函式是 str.strip()
,它可以用來刪除字串中的某個字元或字串。
例如,如果我們想要將字串 Hello World
中的空格 刪除,我們可以使用以下程式碼:
string = "Hello World" string = string.strip(" ") print(string)
執行程式碼後,將會得到 HelloWorld
。
此外,還有一個函式可以用來刪除字串,那就是 str.translate()
。它可以用來將字串中的某個字元或字串刪除,並將其替換為另一個字元或字串。
例如,如果我們想要將字串 Hello World
中的空格 刪除,我們可以使用以下程式碼:
string = "Hello World" string = string.translate(str.maketrans("", "", " ")) print(string)
執行程式碼後,將會得到 HelloWorld
。
總結來說,Python 提供了一系列的函式,可以用來處理字串,其中包括 str.replace()
、str.strip()
和 str.translate()
等函式,可以用來刪除字串中的某個字元或字串。