check if dataframe is empty code example

Example 1: check empty dataframe

df.empty == True

Example 2: df empty python

if df.empty:
  print('Your df is empty...')

Example 3: how to check for empty dataframe

df_empty = pd.DataFrame({'A' : []})
df_empty.empty # True

Example 4: check for an empty dataframe

# Check for an empty dataframe using pandas:
data = {'num': [1,'Nan',3,4,'NaN']}
df = pd.DataFrame(data)

'''
True: the DataFrame is empty
False: the DataFrame contains values
'''

df.empty