python - append tuples to a list -


How can I add the content of each of the tuples (i.e. elements within elements) to another list which is already Therefore, I want to add the following to the list (example: result []) which is not empty:

  l = [('AAAA', 1.11), ( 'BBB', '2.22), (' CCCC ', 3.33)]  

Obviously, the following does not matter:

  El in the item: Results Attachment (item) print result  

I want to print out:

  [Something, 'AAAA', 1.11] [some, 'BBB', 2.22] [something, 'CCCC ', 3.33]  

Please help much in advance.

  result. Expansion (items)  

Comments