pandas.Timestamp.day_of_year — pandas 3.0.0.dev0+2102.g839747c3f6 documentation (original) (raw)
- API reference
- pandas arrays, scalars, and data types
- pandas.Timestamp.day_of_year
Timestamp.day_of_year#
Return the day of the year.
Returns:
int
See also
Return day of the week.
Examples
ts = pd.Timestamp(2020, 3, 14) ts.day_of_year 74