how to check for non datetime value in python

Solutions on MaxInterview for how to check for non datetime value in python by the best coders in the world

showing results for - "how to check for non datetime value in python"
Mads
30 May 2016
1df['Date'] = pd.to_datetime(df['Date'], errors='coerce')
2df = df.dropna(subset=['Date'])
3
4df
5
similar questions