Skip to content
Advertisement

Python: Concat dataframes where one of them is empty

I have the following dataframes:

JavaScript

where df1 represents deposits and df2 represents withdrawals. I want to concat them to get

JavaScript

I am calling an API that fetches withdrawals and deposits. So far, no withdrawals have been made but I want to display that as shown in “df” whenever the code is executed.

Any suggestions on how to do that without hardcoding?

Thank you.

Advertisement

Answer

Use df.empty:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement