Pandas Date and Time Data Types
Learn Pandas data types used for dates and times.
Date and time data types
We can express dates and times in three main forms:
- A specific date or time (
2021-12-10
,2021-11-25 14:59:00
) - A fixed interval (
hour
,week
,month
). - A duration (
3 weeks
,4 hours and 30 minutes
).
The Pandas library has ...