Suppose I have the following list with only strings in it.
appliances = ['blender', 'microwave', 'oven', 'toaster']
How do I generate a new list that is composed of the elements of the list appliance, that contains only the strings that have the letter v in it? After running it through, the new list looks like this:
short = ['oven', 'microwave']
Try this: