👋 Hello! I'm Alphonsio the robot. Ask me a question, I'll try to answer.

empty dataframe

In Python, to create an empty dataframe with Pandas simply call pd.DataFrame() :

import pandas as pd
my_Dataframe = pd.DataFrame()

More