There is a dataframe below:
Unnamed:0|Unnamed:1|Unnamed:2 Apple | |50 Orange | |60 Banana | |70 How can I get the location of value '60' by method df[index, index] without column name?
And the value of '60' is a dynamic result, I only can make sure its location is fixed( at the same row of 'Orange', and next to it with two columns)