The following is my code snippet. I am trying to extract the value of 'string' and 'score' from a nested dictionary within a nested list . How do I accomplish this?
Expected output would be 'Object element' and '1.0'
[{'Form': [{'string': 'object element', 'score': 1.0,}],
'types': ['http://google.com'],
'threshold':34}]
'string'and'score'values? Also, I think the final braces might be a bit mixed up?