CommencerCommencer gratuitement

.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!

Cet exercice fait partie du cours

Python for Spreadsheet Users

Afficher le cours

Instructions

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

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

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

# Look at the result
print(movies)
Modifier et exécuter le code