pandas.Period.weekofyear — pandas 2.2.3 documentation (original) (raw)
- API reference
- pandas arrays, scalars, and data types
- pandas.Perio...
Period.weekofyear#
Get the week of the year on the given Period.
Returns:
int
See also
Get the day component of the Period.
Get the day component of the Period.
Examples
p = pd.Period("2018-03-11", "h") p.weekofyear 10
p = pd.Period("2018-02-01", "D") p.weekofyear 5
p = pd.Period("2018-01-06", "D") p.weekofyear 1