从熊猫PeriodIndex获取值

时间:2018-10-16 08:52:27

标签: python pandas

我有以下PeriodIndex:

PeriodIndex(['2018Q3', '2018Q4', '2019Q1', '2019Q2'], dtype='period[Q-MAR]', name='Quarter', freq='Q-MAR')

如何提取值['2018Q3', '2018Q4', '2019Q1', '2019Q2']

1 个答案:

答案 0 :(得分:0)

转换为string,然后转换为list

p = pd.PeriodIndex(['2018Q3', '2018Q4', '2019Q1', '2019Q2'], 
                    dtype='period[Q-MAR]', name='Quarter', freq='Q-MAR')


print (p.astype(str).tolist())
['2018Q3', '2018Q4', '2019Q1', '2019Q2']