pandas – how to access cell in pandas, equivalent of df[3,4] in R May 20, 2023 by Tarik You can use iloc (to get by position): df.iloc[3,4] I recommend reading the indexing section of the docs.