How to get pandas DataFrame rows and columns in Python

1 Answer

0 votes
import pandas as pd
import numpy as np

df = pd.DataFrame([[1, 2, 3.14],
	               [7, 8, 9],
	               [0, 3, 5.13],
	               [8, 4, 6.9]],
	       columns=['a', 'b', 'c'])

print(df)

shape = df.shape
print('\nShape :', shape)
print('rows :', shape[0])
print('columns :', shape[1])



'''
run:

a  b     c
0  1  2  3.14
1  7  8  9.00
2  0  3  5.13
3  8  4  6.90

Shape : (4, 3)
rows : 4
columns : 3

'''

 



answered Jan 6, 2021 by avibootz
...