I have the following list
lista=[('1', '3', 0.29), ('1', '2', 0.36), ('1', '5', 0.32),
('1', '7', 0.19), ('0', '2', 0.26), ('0', '4', 0.38),
('0', '7', 0.16), ('0', '6', 0.58), ('3', '2', 0.17),
('3', '6', 0.52), ('2', '7', 0.34), ('2', '6', 0.4),
('5', '4', 0.35), ('5', '7', 0.28), ('4', '7', 0.37),
('4', '6', 0.93)]
I need to find a way for sublists that have '1' 'to give me the values of the other whole number in the list. that is to say I must get the data '3', '2', '5', '7'
thanks