pandas.DataFrame.shape — pandas 0.24.0rc1 documentation (original) (raw)

DataFrame. shape

Return a tuple representing the dimensionality of the DataFrame.

Examples

df = pd.DataFrame({'col1': [1, 2], 'col2': [3, 4]}) df.shape (2, 2)

df = pd.DataFrame({'col1': [1, 2], 'col2': [3, 4], ... 'col3': [5, 6]}) df.shape (2, 3)