Say I have a list of lists with similar elements like
[['string', 'string', 'number', 'number', 'number'], ['string', 'string', 'number', 'number', 'number']]
How would I go about converting just the numbers to float? Thanks for any help.
Edit:
So I have a csv file that has data formatted this way. I extracted the data by putting the lines as a list of lists. When I eventually print the data as a formatted table, I want the numbers to be formatted as rounded floats.