字符串列表:寻找特定字符

时间:2012-06-07 22:41:12

标签: python python-2.7

假设我有以下列表,其中只包含字符串。

appliances = ['blender', 'microwave', 'oven', 'toaster']

如何生成由列表设备的元素组成的新列表,该列表仅包含其中包含字母v的字符串?运行之后,新列表如下所示:

short = ['oven', 'microwave']

2 个答案:

答案 0 :(得分:6)

试试这个:

short = [x for x in appliances if 'v' in x]

答案 1 :(得分:1)