drop rows with null date in pandas

Solutions on MaxInterview for drop rows with null date in pandas by the best coders in the world

showing results for - "drop rows with null date in pandas"
Ianthe
22 Jan 2019
1# It will erase every row (axis=0) that has "any" Null value in it.
2df = df.dropna(how='any',axis=0)