pandas.PeriodIndex.second# property PeriodIndex.second[源代码]# 该时期的第二个。 例子 >>> idx = pd.PeriodIndex(["2023-01-01 10:00:30", ... "2023-01-01 10:00:31"], freq='s') >>> idx.second Index([30, 31], dtype='int64')