if none in column remove row

56

if none in column remove row -

import pandas as pd
df = df[pd.notnull(df['Gender'])]

Comments

Submit
0 Comments