Where's the word?
Before finishing cleaning your dataset, you want to check if a specific word occurs in the reviews. You noticed earlier a specific pattern in the strings. Now, you want to create a function to check if a word is present between characters with index 12, and 50, remembering that ending position is exclusive, and print out the lowest index where this word occurs. There are two methods to handle this situation. You want to see which one works best.
The text of two movie reviews has been already saved in the variable movies
. You can use print(movies)
to view the variable in the IPython Shell.
Cet exercice fait partie du cours
Regular Expressions in Python
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
for movie in movies:
# Find the first occurrence of word
print(movie.____(____, ____, ____))