few blocks

Jupyter

In [1]:
import pandas as pd
In [8]:
h = list(range(1,5))
In [12]:
df = pd.DataFrame(h, columns=['nums'])
df.head()
Out[12]:
nums
0 1
1 2
2 3
3 4
few blocks