I am new to Python and I am stuck in this part of coding.
I have a list looks like this:
list = [(4, 7, 5), (4, 5, 7), (7, 4, 5), (7, 5, 4), (5, 4, 7), (5, 7, 4)]
and I want to change it to something looks like this:
new_list = [475,457,745,754,547,574]
how do I do that? TIA.