I have a list of lists, containing country names and 5 numeric values e.g.
[['Korea, Republic of 0.07 40 13 13 153'], ['United States 0.22 8 3 4 109'],['Argentina 0.19 10 14 17 33']]
I'm basically just trying to turn this into a Pandas Dataframe, with the country in the first column, and the following 5 individual ints/floats split into their own columns.
Is there any easy way to go about this? My regex is pretty rusty but I'm sure this could be done in a few lines of code!
Many thanks :)