Issue with displaying a cell value from Dataframe

Hi… I am doing something similar to a lookup table and fetching values from a data frame and assigning to another data frame based on a keyword. But instead of fetching just the values, it fetches the index and column name together. Even if I convert the output to a string, I get a string with index and column name appended to it.

How can I get just the cell value. Please help.

Try using

.values

if you still get the same
.values[0]

1 Like

values[0] worked! Thanks a ton :slight_smile: