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.
Diese Übung ist Teil des Kurses
Regular Expressions in Python
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Remove tags happening at the end and print results
movie_tag = ____
print(____)