I have an intro to programming lab using python. I want to split a list:
items = ['40/40', '10/40', '30/40', '4/5', '18/40', '40/40', '76/80', '10/10']
into two new lists:
items_1 = ['40','10','30','4','18','40','76','10']
items_2 = ['40','40','40','5','40','40','80','10']
Any help is appreciated.