I have a list:
['6.26%', '5.94%', '7.47%', '6.90%', '5.99%', '7.94%', '8.75%',
'9.01%', '10.07%', '5.51%', '4.87%', '5.88%', '4.26%', '2.97%',
'6.38%', '4.93%', '3.96%', '4.62%', '3.73%', '5.15%', '0.86%',
'2.68%', '4.01%', '4.89%', '5.84%', '5.23%', '5.57%', '5.53%',
'2.39%', '1.00%', '2.44%', '4.65%', '3.66%', '4.60%', '4.54%',
'2.30%', '-1.51%', '2.36%', '3.13%', '3.12%', '1.28%', '3.55%',
'3.48%', '1.13%', '3.45%']
and I would like to remove all the ' and % from the list to give me a list with integers that I can use to add to another list. I have seen and looked at many questions regarding lists but none seem to apply to my scenario. Help please!