time模块
Posted ikct2017
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了time模块相关的知识,希望对你有一定的参考价值。
time模块提供时间相关函数。
time.sleep(secs) 线程挂起指定秒
time.gmtime([secs]) 将时间戳转为UTC struct_time对象,并且夏令时参数始终为0
time.localtime([secs]) 同gmtime,转换为本地 struct_time对象,若夏令时可用则参数设置为1
time.mktime(t) localtime的反函数,将struct_time对象转为时间戳
time.asctime([t]) 将struct_time对象转换为格式化字串显示,若不提供参数则由localtime生成
time.strftime(format[,t]) 将struct_time对象转换为指定格式字串显示,可用格式如下
%a 简写工作日,如周四->Thu
%A 全名工作日,如周四->Thursday
%b, %B 月份名
%c 同asctime显示
%d 每月几号
%H, %I 24, 12小时制
%j 每年第几天
%m 月份
%M 分钟
%p AM/PM
%S 秒数
%U 每年第几周
%w, %W 每周第几天, 每年第几周
%x, %X 月日年, 时分秒
%y, %Y 简单年份, 完整年份
%Z 时区,时区名称
%% %号
time.strptime(string[, format]) 将时间字串转换为struct_time对象
以上是关于time模块的主要内容,如果未能解决你的问题,请参考以下文章