I have lists of tuples that I want to combine into one list. I\'ve been able to process the data using lambdas and list comprehension to where I\'m close to being able to u
You can do,
test = test.flatMap(identity)
or
test = test.flatMap(lambda list: list)