当前日期时间
from datetime import datetime
import time
dt=datetime.now()# 时间日期
ts=time.time()# 时间戳
st='2018-12-18 11:12:13'# 字符串
默认:
数值时间戳:时间戳是数值格式
时间字符串:字符串符合时间规范写法
时间日期:Python下的datetime.datetime类型
时间戳 <-> 字符串
字符串=datetime.fromtimestamp(时间戳).strftime(格式)
a_string=datetime.fromtimestamp(ts).strftime('%Y-%m-%d %H:%M:%S')
时间戳=time.mktime(time.strptime(字符串,格式))
a_ts=time.mktime(time.strptime(st,'%Y-%m-%d %H:%M:%S'))
字符串 <-> 时间日期
时间日期=datetime.strptime(字符串,格式)
a_datetime=datetime.strptime(st,'%Y-%m-%d %H:%M:%S')
字符串=datetime.strftime(时间日期,格式)
a_string2=datetime.strftime(dt,'%Y-%m-%d %H:%M:%S')
时间戳 <-> 时间日期
时间日期=datetime.fromtimestamp(时间戳)
a_datetime2=datetime.fromtimestamp(ts)
时间戳=datetime.timestamp(时间日期)
a_ts2=datetime.timestamp(dt)
示例:
补充
DataFrame中一列统一处理_时间戳->时间日期
import pandas as pd
df['time'] = pd.to_datetime(df.timestamp, unit='s')
把这里的时间(time)转换成字符串
pd.Timestamp.strftime(df['time'][0], '%Y-%m-%d %H:%M:%S')