这里介绍python3中时间的处理,常用的时间处理工具模块是time、datetime、calendar。下面将分别介绍。
文档官网地址:https://docs.python.org/3/library/time.html
引入时间模块:
import time
# 当前时间
now = time.localtime()
# 输出时间元组,如:time.struct_time(tm_year=2019, tm_mon=7, tm_mday=2, tm_hour=15, tm_min=29, tm_sec=4, tm_wday=1, tm_yday=183, tm_isdst=0)
# tm_wday:星期0到6, 0:星期一
# tm_yday:一年中第几天
print('时间各字段:{}'.format(now))
# 时间元组中各元素也可单独获取
print('一年中第几天:{}'.format(now.tm_yday))
# 当前时间的时间戳,单位是秒,如:1562053245.5436401
print('当前时间的时间戳,:{}'.format(time.time()))
# 时间格式化,如:2019-07-02 15:15:57
print('时间格式化:{}'.format(time.strftime('%Y-%m-%d %H:%H:%S', now)))
# 完整星期名称,如:Wednesday
print(time.strftime('完整星期:%A', now))
# 简写星期名称,如:Wed
print(time.strftime('简写星期:%a', now))
# 星期几,0到6,0为星期天, 如:3
print(time.strftime('星期几:%w', now))
# 一年的第几个星期,如:26
print(time.strftime('一年的第几个星期:%W', now))
# 完整月份名称,如:July
print(time.strftime('完整月份名称:%B', now))
# 简写月份名称,如:Jul
print(time.strftime('简写月份名称:%b', now))
# 上午或下午,如:PM
print(time.strftime('上午或下午:%p', now))
# 字符串转时间
print('字符串转时间:{}'.format(time.strptime('2018-07-02 16:16:35', '%Y-%m-%d %H:%M:%S')))
# 时间戳转时间
print('时间戳转时间:{}'.format(time.gmtime(time.time())))
# 线程休眠,单位秒
time.sleep(1)
文档官网地址:https://docs.python.org/3/library/datetime.html
引入时间模块:
from datetime import datetime, date, time, timedelta
# 当前时间
now = datetime.now()
# 当前时间,如:2019-07-09 21:28:43.402596
print('当前时间:{}'.format(now))
# 指定日期,如:2018-01-01 00:00:00
print('指定日期:{}'.format(datetime(2018, 1, 1)))
# 指定日期和时间,如:2018-01-01 21:10:16
print('指定日期和时间:{}'.format(datetime(2018, 1, 1, 21, 10, 16)))
# 输出当前日期,如:2019-07-09
print(date.today())
# 指定日期,如:2019-01-01
print(date(2019, 1, 1))
# 指定时间,如:21:15:16
print(time(21, 15, 16))
# 所有字段,包括毫秒,如:2019-07-02 14:11:12.091320
print('当前时间所有字段:{}'.format(now))
# 日期字段,如:2019-07-02
print('日期字段:{}'.format(now.date()))
# 时间字段,如:14:11:12.091320
print('当前时间:{}'.format(now.time()))
# 时间戳,单位是秒,如:1562047872.09132
print('当前时间:{}'.format(now.timestamp()))
# 各个字段,如:year:2019 month:7 day:2 hour:14 minute:11 second:12 microsecond:91320
print('year:{} month:{} day:{} hour:{} minute:{} second:{} microsecond:{}'
.format(now.year, now.month, now.day, now.hour, now.minute, now.second, now.microsecond))
# 星期几,0到6,0是星期一
print('当前时间:{}'.format(now.weekday()))
# 字符串转时间
print(datetime.strptime('2019-01-10', '%Y-%m-%d'))
# 时间戳转时间
print(datetime.fromtimestamp(now.timestamp()))
# 时间转字符串,如:2019-07-09 21:33:36
print('当前时间:{}'.format(now.strftime('%Y-%m-%d %H:%M:%S')))
# 时间部分字段修改
# 如:2001-01-05 11:09:45.443947
print('时间部分字段修改:{}'.format(now.replace(year=2001, month=1)))
# 如:2001-01-06 11:09:45.443947
print('时间部分字段修改:{}'.format(now.replace(year=2001, month=1, day=now.day + 1)))
# 时间增减操作
diff = timedelta(days=1.5, hours=3)
# 时间增加,如:
print('时间减少:{}'.format(now - diff))
# 时间减少,如:
print('时间增加:{}'.format(now + diff))
# 计算两时间差,datetime相减为timedelta
t1 = now.replace(day=1, second=20, microsecond=10)
t2 = now.replace(year=now.year + 1, day=5, second=45, microsecond=34)
diff = t2 - t1
# diff = t1-t2
# 两时间相差的天数(包含年和天字段)
print('两时间相差的天数(包含年和天字段):{}'.format(diff.days))
# 两时间相差的秒数(仅秒字段比较)
print('两时间相差的秒数(仅秒字段比较):{}'.format(diff.seconds))
# 两时间相差的总秒数
print('两时间相差的总秒数:{}'.format(diff.total_seconds())
引入时间模块:
from datetime import datetime, timedelta
# 指定年份的日历,c:月份间隔 w:日期间隔 l:星期占用行数(间隔)
print(calendar.calendar(2019, c=2, w=1, l=1))
# 指定月份的日历
print(calendar.month(2019, 7))
# 返回列表,列表的每个元素又是单独的列表,单独列表是按周切分的日期,如:[[1, 2, 3, 4, 5, 6, 7], [8, 9, 10, 11, 12, 13, 14], [15, 16, 17, 18, 19, 20, 21], [22, 23, 24, 25, 26, 27, 28], [29, 30, 31, 0, 0, 0, 0]]
print(calendar.monthcalendar(2019, 7))
# 是否闰年,True:是 False:否
print(calendar.isleap(2019))
# 返回开始年(包含)到结束年(不包含)间的闰年数, 如:5
print(calendar.leapdays(2000, 2019))
# 返回元组,第一个元素表示该月第一天是星期几,第二个元素表示该月有多少天,如 (0, 31),0代表2019年7月第一天是星期一,31代表这个月有多少天
print(calendar.monthrange(2019, 7))
# 返回指定日期是星期几,如:3 代表星期四
print(calendar.weekday(2019, 7, 4))
# 时间元组转为时间戳(相反操作可用time.gmtime()),单位秒, 如:1562274616
print(calendar.timegm((2019, 7, 4, 21, 10, 16)))
这里列出关于时间的部分操作,更多操作请查看官网。