Python字符串去掉引号的方法是什么

1271
2023/9/9 4:16:21
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

Python中可以使用以下方法去掉字符串中的引号:

  1. 使用strip()方法去掉字符串两边的引号:
string = '"Hello, World!"'
new_string = string.strip('"')
print(new_string)  # Output: Hello, World!
  1. 使用切片去掉字符串的引号:
string = '"Hello, World!"'
new_string = string[1:-1]
print(new_string)  # Output: Hello, World!
  1. 使用replace()方法将引号替换为空字符串:
string = '"Hello, World!"'
new_string = string.replace('"', '')
print(new_string)  # Output: Hello, World!

请注意,以上方法只能去掉字符串两边的引号,如果字符串中间还包含引号,需要根据具体情况进行处理。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: python怎么读取com口数据