pandas.Timestamp.days_in_month#
- Timestamp.days_in_month#
返回该月份的天数。
- 返回:
- int
参见
Timestamp.month_name
返回具有指定区域设置的 Timestamp 的月份名称。
例子
>>> ts = pd.Timestamp(2020, 3, 14) >>> ts.days_in_month 31
返回该月份的天数。
参见
Timestamp.month_name
返回具有指定区域设置的 Timestamp 的月份名称。
例子
>>> ts = pd.Timestamp(2020, 3, 14)
>>> ts.days_in_month
31