Home »
Python »
Python Pandas MCQs
Amongst which of the following is / are not correct to access individual item from dataframe 'df'
14. Amongst which of the following is / are not correct to access individual item from dataframe 'df'.
- df.iat[2,2]
- df.loc[2,2]
- df.at[2,2]
- df[0,0]
Answer: D) df[0,0]
Explanation:
df[0,0] is incorrect.