polars.Expr.dt.month#
- Expr.dt.month() Expr [source]#
Extract month from underlying Date representation.
Applies to Date and Datetime columns.
Returns the month number starting from 1. The return value ranges from 1 to 12.
- Returns:
- Expr
Expression of data type
UInt32
.
Examples
>>> from datetime import timedelta, datetime >>> start = datetime(2001, 1, 1) >>> stop = datetime(2001, 4, 1) >>> df = pl.DataFrame( ... {"date": pl.date_range(start, stop, timedelta(days=31), eager=True)} ... ) >>> df shape: (3, 1) ┌─────────────────────┐ │ date │ │ --- │ │ datetime[μs] │ ╞═════════════════════╡ │ 2001-01-01 00:00:00 │ │ 2001-02-01 00:00:00 │ │ 2001-03-04 00:00:00 │ └─────────────────────┘ >>> df.select(pl.col("date").dt.month()) shape: (3, 1) ┌──────┐ │ date │ │ --- │ │ u32 │ ╞══════╡ │ 1 │ │ 2 │ │ 3 │ └──────┘