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 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 keom typing import List List [str), colour: str) -> List [str]: search-closet(items : ""tems is a 1ist containing descriptions of the contents of a closet where every deseription has the form 'colour item', where each colour is one word and each item is one or more word. For example 3 def 'grey sunmer jacket'orange spring jacket'red shoes''green hat' 10 colour is a colour that is being searched for in items Return a list containing only the items that match the colour. 12 13 14 15 16 17 18 19 20 >>> search closet(l'red summer jacket'orange spring jacket' 'red shoes 'green hat, 'red') 'red sunmer jacket','red shoes' >> search_closet('red shirt.'green pants'], blue) >search closet('mauve
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
