I have a dictionary that has multiple keys and each key has multiple values. However the values in each key are syntaxed with brackets which makes the program think each key is a list of values.
d = {'Select Income REIT': ['SIR', '25.19', '25.41', '25.13', '25.25', '0.16', '0.64', '330625', '25.57', '17.07', '2', '7.92', '21.73', '27.4'], 'Mercury General': ['MCY', '51.82', '52.41', '51.78', '52.37', '1.04', '2.03', '123768', '57.19', '42.97', '2.48', '4.74', '40.6', '12.45']}
How do I write code to remove the [] from this line? I know i can just delete it, but I have thousands of dictionary keys that have this syntax.
Thank you!