Hi I have a data frame and I would like to access to one of my columns but only the cell of my data frame by position.
I mean, this is my df:
| A | B | C
------|-----|--
| 1 | 2 | 3
| 4 | 5 | 5
|
I want to access to the cell [0, 1] I mean "B" these are the line codes that I used
df.iloc[0,1]
But my result was 2 and I want the letter B in my result.
Thanks for your help