favorite_things = ['raindrops on roses', 'whiskers on kittens', 'bright copper kettles', 'warm woollen mittens', 'brown paper packages tied up with strings'] print("You've got a bunch of favorite things.") fave_thing = input("Which favorite thing would you like to search for? ") #search for the favorite thing the user enters (use the appropriate list method) #if the thing is found, print out its position. #if the thing is not found, tell the user that it isn't found #use exception handling where appropriate