pandas.DatetimeIndex.day#
- propertyDatetimeIndex.day[source] #
The day of the datetime.
See also
DatetimeIndex.year
The year of the datetime.
DatetimeIndex.month
The month as January=1, December=12.
DatetimeIndex.hour
The hours of the datetime.
Examples
>>> datetime_series = pd.Series( ... pd.date_range("2000年01月01日", periods=3, freq="D") ... ) >>> datetime_series 0 2000年01月01日 1 2000年01月02日 2 2000年01月03日 dtype: datetime64[ns] >>> datetime_series.dt.day 0 1 1 2 2 3 dtype: int32