I have a numerical list which looks like ['3,2,4', '21,211,43', '33,90,87']
I guess at this point the elements are considered as strings.
I want to remove the inverted comas and to make a list which with all these numbers.
Expected output is [3,2,4, 21,211,43, 33,90,87]
Also, I would like to know if the type of element is converted from to string to integer.
Somebody please help me!
[int(x) for string in data for x in string.split(',')]