I have a Python list:
listx = [["a", 127, "Blue", 0],
["b", 127, "Red", 1],
["b", 127, "Green", 0],
["b", 99, "Green", 1],
["c", 99, "Yellow", 0]]
This is table view for understanding the situation better way:

I want to do some filter function. For example; I want to get a list with index 0 = "b" and index 1 = 127. So the results must be:
listxnew = [["b", 127, "Red", 1],
["b", 127, "Green", 0]]
Table view for listxnew to understand the situation better way:

So how can I do this with simple Python code? Thanks.