I have this form of a list of lists:
[[('1st',), ('2nd',), ('5th',)], [('1st',)]]
I want to convert this to:
[['1st', '2nd', '5th'], ['1st']]
I tried this:
res = [list(ele) for ele in racer_placement for ele in ele]
But the result I got:
[['1st'], ['2nd'], ['5th'], ['1st']]