Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python list comprehension with filter example 2

wiki_movies = [movie for movie in wiki_movies_raw
               if ('Director' in movie or 'Directed by' in movie)
                   and 'imdb_link' in movie]
len(wiki_movies)
Source by courses.bootcampspot.com #
 
PREVIOUS NEXT
Tagged: #python #list #comprehension #filter
ADD COMMENT
Topic
Name
5+1 =