From action_scifi, subset only the rows where the genre_act column is null. code example
Example 1: python select columns with no na
df = df[df.columns[~df.isnull().all()]]
Example 2: fetch row where column is missing pandas
df[df['column_name'].isnull()]