在 Python 中从字符串中删除引号
用单引号或双引号括起来的字符组合称为一个字符串。本文将介绍在 Python 中从字符串中删除引号的不同方法。
在 Python 中使用 replace()
方法从字符串中删除引号
这个方法需要 2 个参数,可以命名为 old 和 new。我们可以调用 replace()
,用'""'
作为旧字符串,用""
(空字符串)作为新字符串,来删除所有的引号。
完整的示例代码如下。
old_string = '"python"'
new_string = old_string.replace('"', "")
print("The original string is - {}".format(old_string))
print("The converted string is - {}".format(new_string))
输出:
The original string is - "python"
The converted string is - python
在 Python 中使用 strip()
方法从字符串中删除引号
在这个方法中,字符串两端的引号会被删除。在这个函数中传递引号 '""'
作为参数,它将把旧字符串两端的引号去掉,生成不带引号的 new_string
。
完整的示例代码如下。
old_string = '"python"'
new_string = old_string.strip('"')
print("The original string is - {}".format(old_string))
print("The converted string is - {}".format(new_string))
输出:
The original string is - "python"
The converted string is - python
在 Python 中使用 lstrip()
方法从字符串中删除引号
如果引号出现在字符串的开头,本方法将删除它们。它适用于需要删除字符串开头的引号的情况。
完整的示例代码如下。
old_string = '"python'
new_string = old_string.lstrip('"')
print("The original string is - {}".format(old_string))
print("The converted string is - {}".format(new_string))
输出:
The original string is - "python
The converted string is - python
在 Python 中使用 rstrip()
方法从字符串中删除引号
如果引号出现在字符串的末尾,本方法将删除引号。当没有参数传入时,默认要删除的尾部字符是白色空格。
完整的示例代码如下。
old_string = 'python"'
new_string = old_string.rstrip('"')
print("The original string is - {}".format(old_string))
print("The converted string is - {}".format(new_string))
输出:
The original string is - python"
The converted string is - python
在 Python 中使用 literal_eval()
方法从字符串中删除引号
此方法将测试一个 Python 字符或容器视图表达式节点、Unicode 或 Latin-1 编码的字符串。提供的字符串或节点只能由以下 Python 结构组成:字符串、数字、元组、列表、字典、布尔值等。它可以安全地测试包含不受信任的 Python 值的字符串,而不需要检查值本身。
完整的示例代码如下。
string = "'Python Programming'"
output = eval(string)
print(output)
输出:
Python Programming
相关文章
Python 中的字典数组或列表
发布时间:2023/12/18 浏览次数:125 分类:Python
-
本教程演示了如何在 Python 中创建字典数组。Python 中的字典以键值对的形式构成一组元素。列表可以在一个公共名称和特定索引下存储不同类型的元素。
检查索引是否存在于 Python 列表中
发布时间:2023/12/18 浏览次数:185 分类:Python
-
本教程演示了使用列表范围和 IndexError 异常检查 Python 列表中是否存在索引。我们将介绍两种使用列表范围和 IndexError 异常检查列表索引是否存在的方法。
在 Python 中对数字列表进行归一化
发布时间:2023/12/18 浏览次数:50 分类:Python
-
本教程演示如何归一化 python 中的数字列表。归一化意味着将给定的数据转换为另一个尺度。我们重新调整数据,使其介于两个值之间。
如何在 Python 中创建具有特定大小的列表
发布时间:2023/12/18 浏览次数:178 分类:Python
-
本教程介绍了如何在 Python 中创建具有特定大小的列表。当程序员提前知道元素数量时,为列表或数组预分配存储空间是程序员经常用地方式。
在 Python 中的列表中删除多个元素
发布时间:2023/12/18 浏览次数:188 分类:Python
-
我们可以使用 if...else 控制语句、列表推导式、列表切片和 for 循环从 Python 中的列表中删除多个元素。要从 Python 列表中删除多个值,我们可以删除列表的实际值或要从列表中删除的值的索引。
如何在 Python 中获取一个列表的平均值
发布时间:2023/12/18 浏览次数:142 分类:Python
-
本教程将演示如何在 Python 中使用 statistics.mean 获得一个给定列表的平均值。本教程介绍了如何在 Python 中计算一个列表的平均数。
在 Python 中将字典转换为列表
发布时间:2023/12/18 浏览次数:54 分类:Python
-
本文介绍如何在 Python 中将字典转换为列表。Python 中的字典是由键-值对组合而成。在 key 的帮助下,你可以访问字典里面的值。
从 Python 列表中删除某元素的所有出现
发布时间:2023/12/18 浏览次数:163 分类:Python
-
在本文中,我们将看到如何在 Python 中从一个 List 中删除一个元素的所有出现。在 Python 中,列表允许同一个元素多次出现。即使一个元素的值可能与其他元素相同
在Python中将十六进制转换为字节
发布时间:2023/12/18 浏览次数:153 分类:Python
-
本教程介绍了如何在Python中将十六进制值转换为字节文字。十六进制,通常简写为hex,使用16个符号(0-9,a-f)表示值,与十进制的10个符号形成对比。例如,十进制中的1000在十六进制中是3E8。