If you want to removes all data and columns and reassigns the dataframe to an empty frame: myDf=pd.DataFrame(None) #does the trick,
if you want to keep column names: myDf.iloc[0:0]