I have the following pandas DataFrame:
    A    B
1   1    3
2   11   4
3   2    5
4   22   6
I would like to retrieve the full rows when the value in A matches a value in this list:
list = [11, 22]
I have the following pandas DataFrame:
    A    B
1   1    3
2   11   4
3   2    5
4   22   6
I would like to retrieve the full rows when the value in A matches a value in this list:
list = [11, 22]
