data format pandas

Solutions on MaxInterview for data format pandas by the best coders in the world

showing results for - "data format pandas"
Mattia
21 Aug 2020
1>>> pd.to_datetime('13000101', format='%Y%m%d', errors='ignore')
2datetime.datetime(1300, 1, 1, 0, 0)
3>>> pd.to_datetime('13000101', format='%Y%m%d', errors='coerce')
4NaT
5