I'm having a pandas issue.
I have a dataframe that looks like the following:
     A      B       C      D
0   max   kate    marie   John
1   kate  marie   max     john
2   john  max     kate    marie
3   marie john    kate    max
And I need to access, for instance, the cell in row 0, column D.
I tried using df.iloc[0, 3] but it returns the whole D column.
Any help would be appreciated.
 
     
     
    
 
    