I have a record which is stored in data3 which is a string
data3 = ['{"Project_id": "300","Your Design Score ": "N/A"}']
while inserting into my table
cur.executemany("""INSERT INTO TABLE3_ES(Project_id,Your_Design_Score) VALUES (%(Project_id)s, %(Your Design Score )s)""", data3)
It is throwing error:
TypeError: string indices must be integers, not str
How should I convert and load the data into my table?