0 css-learner answered Aug 5 '21 00:00 to create empty dataframe at pandas use constructor DataFrame like as below : import pandas as pd df = pd.DataFrame() print(df) it will print Empty DataFrame Columns: [] Index: [] Edit Answer