python处理时间格式:日期、时间、年、月、日、时刻、星期

原dataframe中的字段timestamp如下:
python处理时间格式:日期、时间、年、月、日、时刻、星期_第1张图片
提取其中的日期、时间、年、月、日、时刻、星期:

import datetime
from datetime import datetime
# 时间格式转换,获取日期、时间、年、月、日、周几、小时
df['date'] = df['timestamp'].dt.date
df['time'] = df['timestamp'].dt.time
df['year'] = df['timestamp'].dt.year
df['month'] = df['timestamp'].dt.month
df['day'] = df['timestamp'].dt.day
df['weekday'] = df['timestamp'].dt.strftime("%w")
df['hour'] = df['timestamp'].dt.hour

python处理时间格式:日期、时间、年、月、日、时刻、星期_第2张图片

你可能感兴趣的:(python,python,数据分析)