The following code creates an empty dataframe with a given size (nRows x nCols) in Python / Pandas:
nRows x nCols
import pandas as pd df = pd.DataFrame(index=range(nRows),columns=range(nCols))