I have a list like this:
[[8, \"Plot\", \"Sunday\"], [1, \"unPlot\", \"Monday\"], [12, \"Plot\", \"Monday\"], [10, \"Plot\", \"Tuesday\"], [4, \"unPlot\", \"
You can also do it with the filter command:
list1 = filter(lambda x: x[1] == "Plot", list) list2 = filter(lambda x: x[1] == "unPlot", list)