Google News
logo
Pandas - Quiz(MCQ)
Select the command to display both row and column index label of dataframe 'exp'.
A)
print(exp.axes())
B)
print(exp.index())
C)
print(exp.index)
D)
print(exp.axes)

Correct Answer :   print(exp.axes)

Advertisement