在Python中删除字符串中的引号可以使用字符串的replace()方法或者正则表达式。
- 使用replace()方法:
字符串的replace()方法可以用来替换字符串中的指定字符。要删除字符串中的引号,可以将引号作为目标字符,将其替换为空字符串。
示例代码:string = 'This is a "quoted" string.'
new_string = string.replace('"', '')
print(new_string)输出:This is a quoted string.
- 使用正则表达式:
正则表达式是一种强大的模式匹配工具,可以用来查找和替换字符串中的特定模式。要删除字符串中的引号,可以使用re模块的sub()函数,将引号的正则表达式模式替换为空字符串。
示例代码:import re
string = 'This is a "quoted" string.'
new_string = re.sub(r'"', '', string)
print(new_string)输出:This is a quoted string.