python去掉列表中所有元素的前后单引号
时间: 2023-12-02 17:03:29 浏览: 79
可以使用列表推导式和字符串的`strip()`方法来去掉列表中所有元素的前后单引号。以下是示例代码:
```python
original_list = ["'apple'", "'banana'", "'cherry'"]
stripped_list = [elem.strip("'") for elem in original_list]
print(stripped_list)
```
输出结果将会是:
```
['apple', 'banana', 'cherry']
```
这样就去掉了列表中所有元素的前后单引号。
阅读全文