I have a list with about a hundred items. Some of them contain commas separating the thousand place. Example:
list = ['10', '1,000', '51,000', '500', '63,000']
I'm trying to convert the list into an int but am finding it difficult with these commas. Is there away to use .replace on the list or something. Thanks for the tips in advance.