Question: Search closet. Complete the following function according to its docstring using a for loop. String method startswith may come in handy here. The lists we

 Search closet. Complete the following function according to its docstring using

Search closet. Complete the following function according to its docstring using a for loop. String method startswith may come in handy here. The lists we test will not all be shown; instead, some will be described in English. If you fail any test cases, you will need to read the description and make your own test. from typing import List def search_closet(items: List[str], colour: str) -> List[str]: """items is a list containing descriptions of the contents of a closet where every description has the form 'colour item', where each colour is one word and each item is one or more word. For example: ['grey summer jacket', 'orange spring jacket', 'red shoes', 'green hat'] colour is a colour that is being searched for in items. Return a list containing only the items that match the colour. >>> search_closet(['red summer jacket', 'orange spring jacket', 'red shoes', 'green hat'], 'red') ['red summer jacket', 'red shoes'] >>> search_closet(['red shirt', 'green pants'], 'blue') [] >>> search_closet([], "mauve') []

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!