newDF = pd.DataFrame()#creates a new dataframe that's empty
newDF = newDF.append(oldDF, ignore_index =True)# ignoring index is optional# try printing some data from newDFprint newDF.head()#again optional
#This was first Posted By Hilarious Hornet
newDF = pd.DataFrame()#creates a new dataframe that's empty
newDF = newDF.append(oldDF, ignore_index =True)# ignoring index is optional# try printing some data from newDFprint(newDF.head())#again optional