gpt4 book ai didi

python - 从字符串中提取列表

转载 作者:行者123 更新时间:2023-12-04 13:03:03 27 4
gpt4 key购买 nike

我正在使用 python 并面临从具有该列表的字符串中提取特定列表对象的问题。

这是我在字符串中的列表对象。

input = "[[1,2,3],[c,4,r]]"

我需要这样的输出。
output = [[1,2,3],[c,4,r]]

有没有办法做到这一点?

最佳答案

使用 ast.literal_eval :

Python 2.7.10 (default, Jul 14 2015, 19:46:27)
[GCC 4.8.2] on linux
import ast
input = "[[1,2,3],['c',4,'r']]"
output = ast.literal_eval(input)
output
=> [[1, 2, 3], ['c', 4, 'r']]

如果你真的是为了 cr只是变量的当前值 cr而不是文字 'c''r' ,你需要使用 eval ,这是相当不安全的,但其他方式相同。

关于python - 从字符串中提取列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49890561/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com