З розумінням, ітерація вкладених списків повинна слідувати в тому ж порядку, що і еквівалент, вбудований для циклів.
Щоб зрозуміти, ми візьмемо простий приклад з НЛП. Ви хочете створити список усіх слів із списку речень, де кожне речення є списком слів.
>>> 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', '.']
Щоб видалити повторювані слова, ви можете використовувати набір {} замість списку []
>>> 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']
або подати заявку list(set(all_words))
>>> all_unique_words = list(set(all_words))
['.', 'dog', 'the', 'chases', 'barks', 'mouse', 'The', 'cat']
itertools.chain
якщо хочете сплощений список:list(chain.from_iterable(entry for tag in tags for entry in entries if tag in entry))