从python上的特定列表中提取元素

2024-04-27 12:49:48 发布

您现在位置:Python中文网/ 问答频道 /正文

下面是要分析的模块:

('images\\Principales\\Screenshot_1.png', '{"categories":[{"name":"abstract_","score":0.00390625},{"name":"outdoor_","score":0.01171875},{"name":"outdoor_road","score":0.41796875}],"description":{"tags":["road","building","outdoor","scene","street","city","sitting","empty","light","view","driving","red","sign","intersection","green","large","riding","traffic","white","tall","blue","fire"],"captions":[{"text":"a view of a city street","confidence":0.83864323826716347}]},"requestId":"73fc14d5-653f-4a0a-a45a-e7a425580361","metadata":{"width":150,"height":153,"format":"Png"},"color":{"dominantColorForeground":"Grey","dominantColorBackground":"Grey","dominantColors":["Grey"],"accentColor":"274A68","isBWImg":false}}')

我需要提取“description”后的所有元素,但我不知道怎么做。。。(事实上,我需要这些元素:

^{pr2}$

我已经找了好几分钟了,但我不知道怎么做!我对学习“列表”元素有点初学者,但我仍然很难理解。在

“For”循环只返回'images\\Principales\\Screenshot_1.png',然后剩下大的块。。。在

你有解决办法吗?在

谢谢你的忠告!在

编辑:

实际上,它实际上是JSON!感谢帮助我的人:) 为了提取包含在第二个块中的所需元素,我只需这样做:

import json
ElementSeparate= '{"categories":[{"name":"abstract_","score":0.00390625},{"name":"outdoor_","score":0.01171875},{"name":"outdoor_road","score":0.41796875}],"description":{"tags":["road","building","outdoor","scene","street","city","sitting","empty","light","view","driving","red","sign","intersection","green","large","riding","traffic","white","tall","blue","fire"],"captions":[{"text":"a view of a city street","confidence":0.83864323826716347}]},"requestId":"73fc14d5-653f-4a0a-a45a-e7a425580361","metadata":{"width":150,"height":153,"format":"Png"},"color":{"dominantColorForeground":"Grey","dominantColorBackground":"Grey","dominantColors":["Grey"],"accentColor":"274A68","isBWImg":false}'
ElementSeparate = json.loads(ElementSeparate)
for a in ElementSeparate['description']['tags']:
    print a

Tags: nameview元素streetcitytagsdescriptiongrey