There is a pandas data frame. One of columns named Exceptions. Row represent entries. In Exceptions i store tuples.
i need to do a conditional selection of rows (there are other conditions which need to be &ed for further selection)
>>>print(dataframe.Exceptions)
0
1
2 (sfm, sfmp)
4
3
Name: Exceptions, dtype: object
>>>'sfm' not in dataframe.Expections
True
How to do this conditional selection with Tuples unpacked.
Appreciate your suggestions.