python中,我们会用到很多和时间相关的操作。下面就来看看时间的模块的作用。

  使用相应功能需要导入time模块

import time

  time模块方法:

  asctime(p_tuple=None):

  将一个时间的元组或者struct_time类型的数据转换为字符串。

print(time.asctime())
print(time.asctime((2012,5,12,11,36,54,3,1,1)))
print(time.asctime(time.localtime(1462707651)))
print(type(time.asctime((2012,5,12,11,36,54,3,7,12))),type(time.asctime(time.localtime(1462707651.3773372))))

  运行结果是:

Thu Sep  1 14:36:32 2016
Thu May 12 11:36:54 2012
Sun May 8 19:40:51 2016
<class 'str'> <class 'str'>

  可以看见asctime方法将元组的时间格式以及struct_time类型的数据转换为了字符串,如果不进行参数的指定,就会返回当前时间。

  clock():

  第一次调用时返回系统运行时间,以后调用时都显示与第一次调用的间隔。

print(time.clock())
time.sleep(1)
print(time.clock())
time.sleep(1)
print(time.clock())

  运行结果是:

4.665297557343505e-07
0.9996267761954125
1.9995838554578849

  ctime(seconds=None):

  这个方法是将时间戳转换为字符串格式,如果没有参数,则将当前时间转换为字符串

print(time.ctime())
print(time.ctime(1462707651))
print(type(time.ctime()))

  运行结果是:

Thu Sep  1 14:48:54 2016
Sun May 8 19:40:51 2016
<class 'str'>

  gmtime(seconds=None):

  将时间戳转换为0时区的struct_time类型。如果没有参数,则将当前时间进行转换。

print(time.gmtime())
print(time.gmtime(1462707651))
print(type(time.gmtime(1462707651)))

  运行结果是:

time.struct_time(tm_year=2016, tm_mon=9, tm_mday=1, tm_hour=7, tm_min=8, tm_sec=13, tm_wday=3, tm_yday=245, tm_isdst=0)
time.struct_time(tm_year=2016, tm_mon=5, tm_mday=8, tm_hour=11, tm_min=40, tm_sec=51, tm_wday=6, tm_yday=129, tm_isdst=0)
<class 'time.struct_time'>

  struct_time类型解释:

    tm_year  年

    tm_mon  月

    tm_mday  日

    tm_hour  小时(注意时区的差别)

    tm_min  分

    tm_sec  秒

    tm_wday  一周的第几天(0是周一)

    tm_yday  一年的第几天

    tm_isdst  夏令时标志位(有1,0,-1)

  localtime(seconds=None):

  将时间戳转换为当前时区的struct_time类型。如果没有参数,则将当前时间进行转换。

print(time.localtime())
print(time.localtime(1462707651))
print(type(time.localtime(1462707651)))

  运行结果是:

time.struct_time(tm_year=2016, tm_mon=9, tm_mday=1, tm_hour=15, tm_min=23, tm_sec=16, tm_wday=3, tm_yday=245, tm_isdst=0)
time.struct_time(tm_year=2016, tm_mon=5, tm_mday=8, tm_hour=19, tm_min=40, tm_sec=51, tm_wday=6, tm_yday=129, tm_isdst=0)
<class 'time.struct_time'>

  mktime(p_tuple):

  接收一个时间的元组,返回时间戳。

print(time.mktime(time.gmtime()))
print(time.mktime((2016, 9, 1, 15, 23, 16, 3, 245, 0)))

  运行结果是:

1472686642.0
1472714596.0

  mktime方法必须要传入参数。

  sleep(seconds):

  延迟给定的秒数。

print(time.localtime())
time.sleep(3)
print(time.localtime())

  运行结果是:

time.struct_time(tm_year=2016, tm_mon=9, tm_mday=1, tm_hour=15, tm_min=45, tm_sec=2, tm_wday=3, tm_yday=245, tm_isdst=0)
time.struct_time(tm_year=2016, tm_mon=9, tm_mday=1, tm_hour=15, tm_min=45, tm_sec=5, tm_wday=3, tm_yday=245, tm_isdst=0)

  strftime(format, p_tuple=None):

  将struct_time类型的数据使用指定的格式输出。如果没有传入struct_time类型的数据则使用当前时间。

print(time.strftime('%Y-%m-%d %H:%M:%S'))
print(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime()))
print(time.strftime('%Y-%m-%d %H:%M:%S',(2016, 9, 1, 15, 23, 16, 3, 245, 0)))

  运行结果是:

2016-09-01 15:51:03
2016-09-01 15:51:03
2016-09-01 15:23:16

  常用的格式代码如下:
    %Y    十进制数的世纪年份
    %m    十进制数的月份[01,12]
    %d    十进制数的天数[01,31]
    %H    十进制数的小时(24小时制)[00,23]
    %M    十进制数的分钟[00,59]
    %S    十进制数的秒数[00,61]
    %z    时区与UTC(0时区)的偏移
    %a    当前语言环境下缩写的工作日名称
    %A    当前语言环境下完整的工作日名称
    %B    当前语言环境下缩写的月份名称
    %B    当前语言环境下完整的月份名称
    %C    当前语言环境下适当的日期和时间表示
    %I    十进制数的小时(12小时制)[01,12]
    %p    当前语言环境下的上午或下午

  strptime(string, format):

  将格式化字符串转换为时间戳。

print(time.strptime('2016-09-01 15:51:03','%Y-%m-%d %H:%M:%S'))
print(time.strptime('2016-09-01 15:23:16','%Y-%m-%d %H:%M:%S'))

  运行结果是:

time.struct_time(tm_year=2016, tm_mon=9, tm_mday=1, tm_hour=15, tm_min=51, tm_sec=3, tm_wday=3, tm_yday=245, tm_isdst=-1)
time.struct_time(tm_year=2016, tm_mon=9, tm_mday=1, tm_hour=15, tm_min=23, tm_sec=16, tm_wday=3, tm_yday=245, tm_isdst=-1)

  time():

  返回当前时间的时间戳,如果系统时钟提供几分之一秒,返回结果也会有相应的结果。

print(time.time())

  运行结果是:

1472717978.9570408

Python3.x time模块的更多相关文章

  1. Python3之turtle模块的使用

    Python3之turtle模块的使用     直接扣代码就行: import turtle as t t.pensize(4) t.hideturtle() t.colormode(255) t.c ...

  2. python基础系列教程——Python3.x标准模块库目录

    python基础系列教程——Python3.x标准模块库目录 文本 string:通用字符串操作 re:正则表达式操作 difflib:差异计算工具 textwrap:文本填充 unicodedata ...

  3. Python3:Requests模块的异常值处理

    Python3:Requests模块的异常值处理 用Python的requests模块进行爬虫时,一个简单高效的模块就是requests模块,利用get()或者post()函数,发送请求. 但是在真正 ...

  4. Python3中正则模块re.compile、re.match及re.search函数用法详解

    Python3中正则模块re.compile.re.match及re.search函数用法 re模块 re.compile.re.match. re.search 正则匹配的时候,第一个字符是 r,表 ...

  5. Python3安装Celery模块后执行Celery命令报错

    1 Python3安装Celery模块后执行Celery命令报错 pip3 install celery # 安装正常,但是执行celery 命令的时候提示没有_ssl模块什么的 手动在Python解 ...

  6. Python3之configparser模块

    1. 简介 configparser用于配置文件解析,可以解析特定格式的配置文件,多数此类配置文件名格式为XXX.ini,例如mysql的配置文件.在python3.X中 模块名为configpars ...

  7. python3.7 os模块

    #!/usr/bin/env python __author__ = "lrtao2010" #python3.7 os模块 #os模块是与操作系统交互的一个接口 # os.get ...

  8. python3.7 json模块

    #!/usr/bin/env python __author__ = "lrtao2010" #python3.7 json模块 ''' 要在不同的编程语言之间传递对象,就必须把对 ...

  9. python3.7 random模块

    #!/usr/bin/env python __author__ = "lrtao2010" #python3.7 random模块 import random #随机模块 # r ...

  10. python3.7 time模块

    #!/usr/bin/env python __author__ = "lrtao2010" #python3.7 time模块 #time模块没有time.py文件,是内置到解释 ...

随机推荐

  1. logback MDC 使用

    有时候想在logback日志中打印请求IP.流水号这些信息,可以通过MDC(Mapped Diagnostic Contexts)实现: MDC.put("requestNo", ...

  2. PHP运算符-算术运算符、三元运算符、逻辑运算符

    运算符是用来对变量.常量或数据进行计算的符号,它对一个值或一组值执行一个指定的操作.PHP的运算符包括算术运算符.字符串运算符.赋值运算符.位运算符.逻辑运算符.比较运算符.递增或递减运算符.错误控制 ...

  3. yii2打印数据属性(字段名)/数据

    yii2打印数据属性(字段名)/数据 单条数据: $model = $this->findModel($id);//打印字段名 $array = $model->attributes(); ...

  4. C++(二十四) — 指向字符的指针为什么可以用字符串来初始化,而不是字符地址?

    一.C语言中,为什么字符串可以赋值给字符指针变量? char *p: a='; p=&a; //显然是正确的, p="abcd"; //但为什么也可以这样赋值?? 问:一直 ...

  5. C#学习历程(六)[ref 关键字的使用]

    ref 关键字的使用 ref 关键字通过引用(而非值)传递参数. 通过引用传递的效果是,对所调用方法中的参数进行的任何更改都反映在调用方法中. 例如,如果调用方传递本地变量表达式或数组元素访问表达式, ...

  6. zoj 2976 Light Bulbs(暴力枚举)

    Light Bulbs Time Limit: 2 Seconds      Memory Limit: 65536 KB Wildleopard had fallen in love with hi ...

  7. Hibernate主键生成策略详解

    转载自:http://blog.csdn.net/wanghuan203/article/details/7562395 hibernate提供的主键生成策略,使我们可以在实体类的映射xml文件中设定 ...

  8. 起thread时,运行报错terminate called without an active exception

    I am getting a C++ error with threading: terminate called without an active exception Aborted How to ...

  9. GPU编程自学6 —— 函数与变量类型限定符

    深度学习的兴起,使得多线程以及GPU编程逐渐成为算法工程师无法规避的问题.这里主要记录自己的GPU自学历程. 目录 <GPU编程自学1 -- 引言> <GPU编程自学2 -- CUD ...

  10. eclipse 生成发布的apk (signed zipalign过程)

    在发布apk到appstore过程中,上传的apk需要先signed(先生成keystore和key)并zipalign.可按照以下步骤来完成:1. 创建一个keystore和key(右键eclips ...