pandas.Period.day — pandas 2.2.3 documentation (original) (raw)

Period.day#

Get day of the month that a Period falls on.

Returns:

int

Examples

p = pd.Period("2018-03-11", freq='h') p.day 11