# if your list is like this l = [['Adela', 'Fleda', 'Owen', 'May', 'Mona', 'Gilbert', 'Ford'], 'Adela'] # then you a = [] for i in l: if type(i) != str: for x in i: a.append(x) else: a.append(i)