Science, asked by Kablu4656, 5 months ago

To add two dataframes value function may be used

Answers

Answered by DADIREDDYNAGALASYA
0

Hi,

You can use the following methods to combine the data frames:

1) append method

df = A.append(B)

2) pd.concat method

df = pd.concat([A,B])

please mark me as brilliant

Similar questions