pandas pd.read_csv drop nan code example
Example: drop na in pandas
>>> df.dropna(subset=['name', 'born'])
name toy born
1 Batman Batmobile 1940-04-25
>>> df.dropna(subset=['name', 'born'])
name toy born
1 Batman Batmobile 1940-04-25