df = df.dropna(how="all") code example
Example 1: drop null rows pandas
df.dropna()
Example 2: drop column with nan values
fish_frame = fish_frame.dropna(axis = 1, how = 'all')
df.dropna()
fish_frame = fish_frame.dropna(axis = 1, how = 'all')