I have the following element of a list, and the list is 100 elements long.
[(50, (2.7387451803816479e-13, 219))]
How do I convert each elem
You can get the result in this way
>> example = [(50, (2.7387451803816479e-13, 219))] >>> [tuple(x[:1]) + (x[1]) for x in example] [(50, 2.738745180381648e-13, 219)]