有幾種方法可以在Python中刪除字符串中的特定字符:
s = "hello, world!"
s = s.replace(",", "") # 刪除逗號
print(s) # 輸出: hello world!
s = "hello, world!"
s = ''.join([char for char in s if char != ',']) # 刪除逗號
print(s) # 輸出: hello world!
import re
s = "hello, world!"
s = re.sub(',', '', s) # 刪除逗號
print(s) # 輸出: hello world!
以上是一些常見的方法,根據具體情況選擇最適合您的方法。