Goal: Turn list of strings into list of dictionaries
I have the following list of strings
info = ['{"contributors": null, "truncated": true, "text": "hey there"}',
'{"contributors": null, "truncated": false, "text": "how are you"}',
'{"contributors": 10, "truncated": false, "text": "howdy"}']
Desired output:
desired_info = [{"contributors": null, "truncated": true, "text": "hey there"},
{"contributors": null, "truncated": false, "text": "how are you"},
{"contributors": 10, "truncated": false, "text": "howdy"}]
Question: How do I turn list of strings into list of dictionaries?