How to check whether a pandas DataFrame
is empty? In my case I want to print some message in terminal if the DataFrame
is empty.
Question
Answer
You can use the attribute df.empty
to check whether it's empty or not:
if df.empty:
print('DataFrame is empty!')
Source: Pandas Documentation