I have a list l1
this is structured according to the scheme [(number1, number2), ... (number1n, number2n]
. I would like to always only want the very first number and remove the brackets. How do I do that?
l1 = [(285, 1.0000001), (3614, 0.93460923), (671, 0.78742), (1351, 0.72903967), (3883, 0.6139718)]
l2 = [285, 3614, 671, 1351, 3883]