pandas.DataFrame.axes — pandas 3.0.0.dev0+2102.g839747c3f6 documentation (original) (raw)
- API reference
- DataFrame
- pandas.DataFrame.axes
property DataFrame.axes[source]#
Return a list representing the axes of the DataFrame.
It has the row axis labels and column axis labels as the only members. They are returned in that order.
Examples
df = pd.DataFrame({"col1": [1, 2], "col2": [3, 4]}) df.axes [RangeIndex(start=0, stop=2, step=1), Index(['col1', 'col2'], dtype='object')]