Python有两个模块来处理时间time
和datetime
- 1)time被归类于
Generic Operating System Services
,里含有很多有用的函数 - 2)datetime被归类于
Data Types
,其中有对象datetime、time、date及timedelta、tzinfo及相关的一些转换函数
Python日期共有3种表示方式:时间戳(timestamp)、格式化的时间字符串、元组(struct_time)
- 时间戳:是以1970年1月1日00:00:00开始按秒计算的偏移量,使用float类型表示,例如:1430127372.8522351;
time
import time
time.time()
返回当前时间戳
>>> time.time() 1430127372.8522351
time.localtime([secs])
将时间戳转换为当前时区的struct_time,不带参数将取当前时间。
>>> time.localtime() (2015, 4, 27, 17, 41, 12, 0, 117, 0) >>> time.localtime(1430127372.8522351) (2015, 4, 27, 17, 36, 12, 0, 117, 0)
time.gmtime([secs])
将时间戳转换为UTC的struct_time,不带参数将取当前时间。
>>> time.gmtime() (2015, 4, 27, 9, 42, 22, 0, 117, 0) >>> time.gmtime(1430127372.8522351) (2015, 4, 27, 9, 36, 12, 0, 117, 0)
time.mktime(t)
将struct_time转化为时间戳
>>> time.mktime(time.gmtime()) 1430099122.0
time.asctime([t])
把struct_time或元组转换成字符串,不带参数则默认返回本地时间
>>> time.asctime() 'Mon Apr 27 17:53:07 2015'
time.ctime([secs])
把时间戳转换为字符串,不带参数返回本地时间
>>> time.ctime() 'Mon Apr 27 17:55:01 2015'
time.strftime(format[, t])
把时间元组或者struct_time,格式化成字符串,如果没有时间参数将默认使用本地时间
>>> time.strftime("%Y-%m-%d %X", time.localtime()) '2015-04-27 17:57:51'
time.strptime(string[, format])
字符串转化为struct_time格式
>>> time.strptime('2015-04-27 17:57:51', '%Y-%m-%d %X') (2015, 4, 27, 17, 57, 51, 0, 117, -1)
datetime
from datetime import date, time, datetime
date
date.min date.max date.today()
datetime
将字符串转换为datetime对象
datetime.strptime('Sep-21-09 16:34','%b-%d-%y %H:%M');
将datetime对象格式化成字符串
datetime.now().strftime('%b-%d-%y %H:%M:%S');
时间运算
import datetime d1 = datetime.datetime.now() d2 = d1 + datetime.timedelta(days=10) #增加10天 d2 = d1 - datetime.timedelta(seconds=10) #减去10秒
格式说明
符号 | 意义 |
---|---|
%a | 本地(locale)简化星期名称 |
%A | 本地完整星期名称 |
%b | 本地简化月份名称 |
%B | 本地完整月份名称 |
%c | 本地相应的日期和时间表示 |
%d | 一个月中的第几天(01 - 31) |
%H | 一天中的第几个小时(24小时制,00 - 23) |
%I | 第几个小时(12小时制,01 - 12) |
%j | 一年中的第几天(001 - 366) |
%m | 月份(01 - 12) |
%M | 分钟数(00 - 59) |
%p | 本地am或者pm的相应符 |
%S | 秒(01 - 61) |
%U | 一年中的星期数。(00 - 53星期天是一个星期的开始。)第一个星期天之前的所有天数都放在第0周 |
%w | 一个星期中的第几天(0 - 6,0是星期天) |
%W | 和%U基本相同,不同的是%W以星期一为一个星期的开始 |
%x | 本地相应日期 |
%X | 本地相应时间 |
%y | 去掉世纪的年份(00 - 99) |
%Y | 完整的年份 |
%Z | 时区的名字(如果不存在为空字符) |
%% | ‘%’字符 |