写一个函数 如果buf是单引号 就变为双引号
时间: 2023-12-14 13:37:59 浏览: 61
js 单引号替换成双引号,双引号替换成单引号的实现方法
下面是一个简单的 Python 函数,实现了将字符串中的单引号替换为双引号的功能:
```python
def replace_quotes(buf):
return buf.replace("'", "\"")
```
使用方法如下:
```python
buf = "Hello, 'World'!"
new_buf = replace_quotes(buf)
print(new_buf) # 输出:Hello, "World"!
```
当输入字符串 `buf` 中包含单引号时,函数会将其替换成双引号,并返回新的字符串。
阅读全文