pandas.PeriodIndex.month #

属性 周期索引。[来源] #

月份为一月=1,十二月=12。

例子

>>> idx = pd.PeriodIndex(["2023-01", "2023-02", "2023-03"], freq="M")
>>> idx.month
Index([1, 2, 3], dtype='int64')