Мне нужно напечатать уникальные слова значения списка

#python #list #set

Вопрос:

В моем списке переменных более 800 слов words . Я разделил и отсортировал по длине слов первые 100 слов на list_one , а остальные на list_two .

Что я получил за list_one это..

 list_one = ['1', 'a', 'a', 'a', 'a', 'a', 'a', 'it', 'is', 'in', 'of', 'be', 'in', 'of', 'or', 'of', 'be', 'on', 'is', 'so', 'in', 'of', 'he', 'is', 'of', 'or', 'of', 'my', 'mr', 'and', 'set', 'url', 'org', 'txt', 'man', 'the', 'man', 'may', 'his', 'the', 'the', 'the', 'one', 'his', 'jane', '1342', 'that', 'good', 'must', 'want', 'wife', 'such', 'this', 'well', 'that', 'some', 'dear', 'said', 'lady', 'title', 'pride', 'utf-8', 'https', 'files', 'truth', 'known', 'views', 'first', 'truth', 'fixed', 'minds', 'other', 'their', 'author', 'austen', '1342-0', 'single', 'little', 'bennet', 'english', 'chapter', 'fortune', 'however', 'language', 'encoding', 'feelings', 'entering', 'families', 'rightful', 'property', 'prejudice', 'character', 'gutenberg', 'daughters', 'possession', 'considered', 'universally', 'surrounding', 'acknowledged', 'neighbourhood']
 

Теперь я должен изменить список list_one на a set . То, что я сделал, это:

 print(set(list_one))
 

Тем не менее, он показывает мне случайные слова, выводимые из сочетания list_one и list_two . Как я могу решить эту проблему? Я не понимаю, почему я не получаю уникальных слов list_one .

Это должно выглядеть так:

 ['a', '1', 'is', 'he', 'be', 'in', 'of', 'or', 'mr', 'my', 'so', 'on', 'it', 'txt', 'set', 'one', 'url', 'and', 'his', 'org', 'man', 'the', 'may', 'jane', 'wife', 'this', '1342', 'want', 'said', 'some', 'that', 'such', 'must', 'lady', 'well', 'good', 'dear', 'pride', 'https', 'known', 'other', 'their', 'title', 'first', 'truth', 'fixed', 'files', 'utf-8', 'minds', 'views', 'little', 'author', 'single', 'bennet', '1342-0', 'austen', 'chapter', 'english', 'however', 'fortune', 'feelings', 'property', 'encoding', 'rightful', 'entering', 'families', 'language', 'prejudice', 'gutenberg', 'daughters', 'character', 'considered', 'possession', 'universally', 'surrounding', 'acknowledged', 'neighbourhood']
 

Комментарии:

1. Пожалуйста, вставьте свой полный код.

Ответ №1:

set образует неупорядоченную коллекцию уникальных элементов. Для получения упорядоченной коллекции sorted можно использовать функцию с соответствующим key параметром:

 list_one = ['1', 'a', 'a', 'a', 'a', 'a', 'a', 'it', 'is', 'in', 'of', 'be', 'in', 'of', 'or', 'of', 'be', 'on', 'is', 'so', 'in', 'of', 'he', 'is', 'of', 'or', 'of', 'my', 'mr', 'and', 'set', 'url', 'org', 'txt', 'man', 'the', 'man', 'may', 'his', 'the', 'the', 'the', 'one', 'his', 'jane', '1342', 'that', 'good', 'must', 'want', 'wife', 'such', 'this', 'well', 'that', 'some', 'dear', 'said', 'lady', 'title', 'pride', 'utf-8', 'https', 'files', 'truth', 'known', 'views', 'first', 'truth', 'fixed', 'minds', 'other', 'their', 'author', 'austen', '1342-0', 'single', 'little', 'bennet', 'english', 'chapter', 'fortune', 'however', 'language', 'encoding', 'feelings', 'entering', 'families', 'rightful', 'property', 'prejudice', 'character', 'gutenberg', 'daughters', 'possession', 'considered', 'universally', 'surrounding', 'acknowledged', 'neighbourhood']

unique_words = sorted(set(list_one), key=lambda x: len(x))
 

unique_words должно выглядеть так:

 ['a', '1', 'is', 'in', 'so', 'mr', 'on', 'or', 'it', 'of', 'be', 'he', 'my', 'one', 'url', 'org', 'txt', 'the', 'and', 'his', 'man', 'may', 'set', 'well', 'lady', 'wife', 'dear', 'jane', 'that', 'must', 'good', 'said', 'this', 'such', 'some', 'want', '1342', 'files', 'fixed', 'https', 'title', 'known', 'views', 'first', 'other', 'pride', 'minds', 'their', 'truth', 'utf-8', 'bennet', 'single', '1342-0', 'author', 'little', 'austen', 'english', 'chapter', 'fortune', 'however', 'language', 'encoding', 'feelings', 'property', 'rightful', 'entering', 'families', 'character', 'prejudice', 'gutenberg', 'daughters', 'possession', 'considered', 'universally', 'surrounding', 'acknowledged', 'neighbourhood']
 

Комментарии:

1. Спасибо. Он возвращает именно то, что мне было нужно

Ответ №2:

Набор должен возвращать только уникальные значения. Либо что-то не так с вашим кодом, и, по-моему, вы переназначили «list_one» в какое-то сочетание обоих списков, либо что-то пошло не так с вашим разделением. Можете ли вы поделиться всем кодом целиком ?

Комментарии:

1. Я исправил код, как написал Рустам, и он сработал

2. Хорошо, что ваша проблема решена, но я думаю, что раньше была другая проблема, если вы получили сообщение от list_two