In termini di comprensione, l'iterazione degli elenchi annidati dovrebbe seguire lo stesso ordine dell'equivalente imbricato per i cicli.
Per capire, prenderemo un semplice esempio dalla PNL. Vuoi creare un elenco di tutte le parole da un elenco di frasi in cui ogni frase è un elenco di parole.
>>> list_of_sentences = [['The','cat','chases', 'the', 'mouse','.'],['The','dog','barks','.']]
>>> all_words = [word for sentence in list_of_sentences for word in sentence]
>>> all_words
['The', 'cat', 'chases', 'the', 'mouse', '.', 'The', 'dog', 'barks', '.']
Per rimuovere le parole ripetute, puoi utilizzare un insieme {} invece di un elenco []
>>> all_unique_words = list({word for sentence in list_of_sentences for word in sentence}]
>>> all_unique_words
['.', 'dog', 'the', 'chase', 'barks', 'mouse', 'The', 'cat']
o applicare list(set(all_words))
>>> all_unique_words = list(set(all_words))
['.', 'dog', 'the', 'chases', 'barks', 'mouse', 'The', 'cat']
itertools.chain
se si desidera un elenco appiattito:list(chain.from_iterable(entry for tag in tags for entry in entries if tag in entry))