Get startedGet started for free

Selecting and .drop()

The movie_length column isn't getting cast in our upcoming merger motion picture, so let's get rid of it!

This exercise is part of the course

Python for Spreadsheet Users

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Select only movie_title and movie_genre in movies
movies_title_genre = ____

# Print results
print(movies_title_genre)
Edit and Run Code