I have a function which will give me a dataframe olddataframe
as output in a loop, i want to combine them into a single Dataframe as newdataframe
by appending and i tried the below code
newdataframe=pd.DataFrame
newdataframe.append(olddataframe,ignore_index=False)
it throws an error like below
TypeError: append() missing 1 required positional argument: 'other'
what needs to be done to fix this