import itertools
a = [['a','b'], ['c']]
print(list(itertools.chain.from_iterable(a)))
x = [["a","b"], ["c"]]
result = sum(x, [])
# This combines the lists within the list into a single list
flat_list = [item for sublist in t for item in sublist]
sum([[1, 2, 3], [4, 5, 6], [7], [8, 9]],[])
# [1, 2, 3, 4, 5, 6, 7, 8, 9]
x = [["a","b"], ["c"]]
result = sum(x, [])
StringName = "seperator".join(ListName)
# Seperator denotes character between each of the joined list elements
b = ["a", "b"] + [7, 6]
print(b)
# ['a', 'b', 7, 6]