I'm working with lists of single tuples that looks like this:
data = [[('jog',), ('Jim',), ('jell',), ('jig',)], [('jabs',), ('jilt',), ('job',), ('jet',)]]
Notice that the list contains two elements: two lists containing 4 tuples. Basically, I'm just trying to remove each tuple and make it look like this:
data = [['jog','Jim','jell','jig'], ['jabs','jilt','job','jet']]
I think this can probably be done with list comprehension, but I've tried for hours and can't come up with the magic formula. Can anyone help with this?