Zrozumienie, iteracja zagnieżdżonych list powinna mieć tę samą kolejność, co odpowiednik imbricowany dla pętli.
Aby to zrozumieć, weźmiemy prosty przykład z NLP. Chcesz utworzyć listę wszystkich słów z listy zdań, gdzie każde zdanie jest listą słów.
>>> 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', '.']
Aby usunąć powtarzające się słowa, możesz użyć zestawu {} zamiast listy []
>>> 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']
lub aplikuj list(set(all_words))
>>> all_unique_words = list(set(all_words))
['.', 'dog', 'the', 'chases', 'barks', 'mouse', 'The', 'cat']
itertools.chain
jeśli chcesz spłaszczoną listę:list(chain.from_iterable(entry for tag in tags for entry in entries if tag in entry))