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.
이 연습은 강의의 일부입니다
Regular Expressions in Python
실습형 인터랙티브 연습
이 예제를 이 샘플 코드를 완성하여 풀어보세요.
for movie in movies:
# Find the first occurrence of word
print(movie.____(____, ____, ____))