Hey Guys i have a list like
['10015, John, Smith, 2, 3.01', '10334, Jane, Roberts, 4, 3.81' , '10208, Patrick, Green, 1, 3.95']
i need to split this list and create a list of this form
10015
John
Smith
2
3.01
10334
Jane
Roberts
4
3.81
any ideas how to do it im lost i used the slit() couldnt get it to work