I have a list of data similar to that below:
a = ['"105', '424"', '"102', '629"', '"104', '307"']
I want this data to be in a form similar to that of below:
a = ['105424', '102629', '104307']
I am unsure of how to proceed. I thought perhaps removing all the commas then inserting commas only where they should be and then removing the quotations. I am finding this to be quite challenging.