I have the bellow list of tuples in python:
[(('A', 'B'), 4), (('B', 'C'), 4), (('C', 'D'), 4)]
And I want to extract the Information as shown bellow:
[('A', 'B', 4), ('B', 'C', 4), ('C', 'D', 4)]
How can I bring it to this form by extracting the inner tuple?