LoslegenKostenlos loslegen

.str.strip()

There is nothing scarier than spaces you can't see! Let's keep working with the movies DataFrame and make sure there's no creepy whitespace around our movie titles!

Diese Übung ist Teil des Kurses

Python for Spreadsheet Users

Kurs anzeigen

Anleitung zur Übung

  • Use the right method for removing whitespace on the movie_title column.

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Strip whitespace from the movie_title column
movies['movie_title'] = movies['movie_title'].____

# Look at the result
print(movies)
Code bearbeiten und ausführen