Question: Python: Looping with Lists Search closet Complete the following function according to its docstring using a for loop. String method startswith may come in handy

Python: Looping with Lists

Python: Looping with Lists Search closet Complete the following function according to

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. 1 from typing import List 2 3 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: I'grey summer jacket, "orange spring jacket', 'red shoes,'green hat'1 10 colour is a colour that is being searched for in items. 12 13 14 15 16 17 18 19 20 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!