如何使用Python從字符串中刪除引號

句法:

input = input.replace("'","")

通過調用replace方法刪除String對像中的引號字符。 該方法在輸入和字符中刪除字符以替換它。

例:

input = "This' is '''a test ' "
output = input.replace("'","")

print( input + " => " + output  )

此示例創建一個名為input的String,其中包含多個單引號字符。 調用方法replace以創建輸出String並刪除引號字符。 輸出String的內容寫入輸出中。

輸出結果為:

This' is '''a test '  => This is a test  

參考文獻:

Python String Object

最近評論