I have a dictionary that has apostrophes for the value and key in every entry. For instance one entry would look like this:
{'lat': '38.683959', 'lon': '-90.265198', 'accuracy': '3'}
I need to get rid of these apostrophes so I can write them into SQL. The single quotes cause an error when I try to write them. What is the best way to get rid of all of the apostrophes?
Thanks for your help!