pandas.PeriodIndex.day#

propertyPeriodIndex.day[source] #

The days of the period.

Examples

>>> idx = pd.PeriodIndex(['2020年01月31日', '2020年02月28日'], freq='D')
>>> idx.day
Index([31, 28], dtype='int64')