python 删除字符串里的分号
时间: 2023-09-02 09:13:16 浏览: 120
Python字符串中删除特定字符的方法
可以使用字符串的 replace 方法来删除字符串里的分号。示例代码如下:
```
original_str = "Hello; World;"
new_str = original_str.replace(";", "")
print(new_str)
```
输出结果为:
```
Hello World
```
阅读全文
Python字符串中删除特定字符的方法