pandas 常用的日期时间处理方法

pandas 常用的日期时间处理方法

import pandas as pd

dates = pd.to_datetime(pd.Series(['2022-7-10 13:14:55', '2022-7-20']), format='%Y-%m-%d %H:%M:%S')
print("返回日期值:", dates.dt.date)
print("返回时间:", dates.dt.time)
print("返回第几季度:", dates.dt.quarter)
print("返回年份:", dates.dt.year)
print("返回年中的第几天:", dates.dt.dayofyear)
print("返回年中的第几周:", dates.dt.isocalendar().week)
print("返回周几(0-6):", dates.dt.dayofweek)
print("返回具体的周几名称,如Friday:", dates.dt.day_name())
print("返回日期所在的月份总天数:", dates.dt.days_in_month)

你可能感兴趣的:(pandas,python,pandas)