I want to do this:
[("item1", "item2"), ("item3", "item4")]
# ->
[("item1", ("item2", True)), ("item3", ("item4", True))]
How can I do this? I have a list of tuples, and the second element in each tuple needs to be it's own tuple, and I need to append an element to the sub tuple.