pandas.PeriodIndex.month# property PeriodIndex.month[源代码]# 月份如一月=1,十二月=12。 例子 >>> idx = pd.PeriodIndex(["2023-01", "2023-02", "2023-03"], freq="M") >>> idx.month Index([1, 2, 3], dtype='int64')