Python List of List to List of String

list_of_string = [''.join(element) for element in list_of_list]
Annoyed Antelope