How can I append the content of each of the following tuples (ie, elements within the list) to another list which already has 'something' in it? So, I want to append the following to a list (eg: result[]) which isn't empty:
l = [('AAAA', 1.11), ('BBB', 2.22), ('CCCC', 3.33)]
Obviously, the following doesn't do the thing:
for item in l:
result.append(item)
print result
I want to printout:
[something, 'AAAA', 1.11]
[something, 'BBB', 2.22]
[something, 'CCCC', 3.33]
Please help. Many thanks in advance.
[something, tuple1, tuple2, tuple3], or several lists,[something, tuple1],[something, tuple2], and[something, tuple3]? – David Zaslavsky Jul 18 '10 at 3:50