Possible Duplicate:
Making a flat list out of list of lists in Python
I have a list like:
[['22', '14']]
How can I transform it to:
[22, 14]
Thank you.
Possible Duplicate:
Making a flat list out of list of lists in Python
I have a list like:
[['22', '14']]
How can I transform it to:
[22, 14]
Thank you.