Time to join!
While normalizing your text, you noticed that one review had a particular structure. This review ends with the HTML tag <\i>
and it has a lot of commas in different places of the sentence. You decide to remove the tag from the end and use the strategy of splitting the string and joining it back again without the commas.
The text of a movie review has been already saved in the variable movie
. You can use print(movie)
to view the variable in the IPython Shell.
This exercise is part of the course
Regular Expressions in Python
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Remove tags happening at the end and print results
movie_tag = ____
print(____)