How do I check if a pandas DataFrame is empty?
dataframe, pandas, python
Solution
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
Problem
How do I check if a pandas `DataFrame` is empty? I'd like to print some message in the terminal if the `DataFrame` is empty.