How can I get exact row and column number i.e cell address by value in Pandas dataframe? For example, I have the following dataframe:
ClientID LastName
0 34 Johnson
1 67 Smith
2 53 Brows
How can I find the cell address that has'Smith' as value? something which returns me [1,1] as value
I know the reverse is possible eg: df.get_value(1, 'LastName')
but note that here I also do not know the column name. I just have the key value and want to find exact cell address of the dataframe.