用replace编程输入一个字符串 hi!好?ok,行。,把里面的标点符号全换成空格
时间: 2023-05-19 17:01:56 浏览: 94
JavaScript使用replace函数替换字符串的方法
Sure, here's the code:
```python
s = "hi!好?ok,行。"
s = s.replace('!', ' ').replace('?', ' ').replace(',', ' ').replace('。', ' ')
print(s)
```
The output will be:
```
hi 好 ok 行
```
阅读全文