I have a list with the following values, which in fact are strings inside the list:
mylist = ['4, 1, 2', '1, 2', '120, 13', '223, 10']
How can I extract each value and create a new list with every value inside the list above?
I need a result like:
mylist = [4, 1, 2, 1, 2, 120, 13, 223, 10]
Thank you in advance