I have a blob (CSV) in a database. I prepared a string buffer and created a panda data frame. The CSV file does not have column names for certain columns and certain column names are repeated.
For Example: In case of needing to fetch the intersecting value for B5 = search_row
and E2 = search_column
. ie E5 = value_to_be_fetched
.
I just have the text value search_row
and search_column
. How do I find the row index as B5
and column index as E2
? As well as fetch the value E5 = value_to_be_fetched
.