Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started