-
-
Notifications
You must be signed in to change notification settings - Fork 703
Open
Description
Hi Brandon,
Thanks for an excellent tutorial.
Your answer to q "List all of the "Treasure Island" movies from earliest to most recent." is
titles[titles.title == 'Treasure Island'].sort_values('year')
There are a few Treasure Island movies (e.g. Treasure Island (II) ) which will not make it through this filter.
This could be addressed by changing the answer to the following:
titles[titles.title.str.startswith('Treasure Island')].sort_values('year')
Or perhaps the question is a little ambiguous.
All the best,
Richard
Metadata
Metadata
Assignees
Labels
No labels