Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda List Comprehension | Natural Language Handling
Identifying the Most Frequent Words in Text

book
List Comprehension

List comprehension in Python is a compact and efficient method for generating a new list. This technique involves applying an expression to each item in an existing list, and it may include a filter condition to selectively process elements. This approach is a shorthand method, enhancing both the readability and efficiency of your code.

Tarefa

Swipe to start coding

Create a list comprehension to generate a list of words from story that are not considered stopwords.

Solução

# Create a list of words from 'story' that are not stopwords
filtered_list = [word for word in word_tokenize(story) if word.casefold() not in stop_words]

# Display the filtered list
filtered_list

Mark tasks as Completed
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 1. Capítulo 5
some-alt