pandas.Timestamp.weekday

Timestamp.weekday()

Return the day of the week represented by the date.

Monday == 0 … Sunday == 6.

Examples

>>> ts = pd.Timestamp('2023-01-01')
>>> ts
Timestamp('2023-01-01  00:00:00')
>>> ts.weekday()
6

© 2008–2011, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
© 2011–2025, Open source contributors
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/2.3.0/reference/api/pandas.Timestamp.weekday.html