在Python中,和时间处理相关的模块有time,datatime,calendar(不常用)三个。

UTCC(Coordinated Universal Time,世界协调时)亦即格林威治天文时间,世界标准时间。在中国为UTC+8。DST(Daylight Saving Time)即夏令时。

在Python中时间的表示方式分三种:

  1. 时间戳(timestamp):时间戳表示从1970年1月1日00:00:00开始按秒计算的偏移量。我们运行“type(time.time())”,返回的是float类型。

    >>> time.time()
    1521948761.733449
    >>> type(time.time())
    <class 'float'>
  2. 格式化的时间字符串:2014-11-11 11:11,即time.strftime('%Y-%m-%d')
    >>> import time
    >>> time.strftime('%Y-%m-%d')
    '2018-03-25'
  3. 元组(struct_time)共九个元素,返回struct_time的函数主要有gmtime(),localtime(),strptime()
    >>> import time
    >>> time.localtime()
    time.struct_time(
    tm_year=2018, # 年
    tm_mon=2, # 月
    tm_mday=26, # 日
    tm_hour=2, # 时
    tm_min=47, # 分
    tm_sec=49, # 秒
    tm_wday=0, # 星期几(0代表星期日)
    tm_yday=57, # 一年中第几天
    tm_isdst=0) # 是否夏令时,默认是-1
time模块

      

time常用方法:

>>> time.time()  # 返回当前时间的时间戳(按秒计算的浮点数),从1970到现在的秒数
1521948276.9173918 >>> time.localtime() # 打印本地时间(操作系统时间)
time.struct_time(tm_year=2018, tm_mon=3, tm_mday=25, tm_hour=11, tm_min=22, tm_sec=27, tm_wday=6, tm_yday=84, tm_isdst=0) >>> time.gmtime() # 打印格林威治时间(比北京时间晚8个小时)
time.struct_time(tm_year=2018, tm_mon=3, tm_mday=25, tm_hour=3, tm_min=55, tm_sec=55, tm_wday=6, tm_yday=84, tm_isdst=0) time.mktime() # 把一个时间对象转化为时间戳
>>> time.mktime(time.localtime())
1521950235.0 time.sleep() # 线程推迟指定的时间运行,单位为秒 time.asctime() # 把一个表示时间的元祖或struct time转换表示形式
>>> time.asctime() # 如果没有参数将time.localtime作为参数传入
'Mon Feb 26 10:59:10 2018' time.ctime() # 把一个时间戳转化为time_asctime()形式,默认以time.time()为参数
>>> time.ctime() # 相当于time.asctime(time.localtime(secs))
'Mon Feb 26 11:06:29 2018'
>>> time.ctime(-231334422) # 参数可以为负
'Sun Sep 2 20:26:18 1962't time.strftime(format,a) # 把一个代表时间的元祖或struct time转化为格式化的时间字符串
>>> time.strftime('%Y-%m-%d')
'2018-02-26'
>>> time.strftime('%Y-%m-%d %H:%M:%S')
'2018-02-26 11:19:47'
>>> time.strftime('%Y-%m-%d %H:%M:%S',a)
'2018-02-26 10:40:18'
>>> time.strftime('%Y-%m-%d %H:%M:%S %A',a)
'2018-02-26 10:40:18 Monday'
>>> time.strftime('%Y-%m-%d %H:%M:%S %p')
'2018-02-26 11:21:44 AM'
>>> time.strftime('%Y-%m-%d %H:%M:%S %U') # 今年的第几周
'2018-02-26 11:21:55 08'
>>> time.strftime('%Y-%m-%d %H:%M:%S %w') # 0-6,星期日是0
'2018-02-26 11:24:56 1' time.strptime('string', format) # 把一个格式化时间字符串转化为struct_time,stftime的逆操作
>>> s = time.strftime('%Y %m-%d %H:%M:%S')
>>> s
'2018 02-26 11:42:16'
>>> time.strptime(s,'%Y %m-%d %H:%M:%S')
time.struct_time(tm_year=2018, tm_mon=2, tm_mday=26, tm_hour=11, tm_min=42, \
tm_sec=16, tm_wday=0, tm_yday=57, tm_isdst=-1)
datetime模块

  datetime模块相比time模块,datetime模块的接口更直观,更容易调用。

  datetime模块定义了下面几个类:

    1、datetime.date:表示日期的类,常用的属性有year,month,day

    2、datetime.time:表示时间的类,常用的属性有hour,minute,second,microsecond

    3、datetime.datetime:表示日期时间

    4、datetime.timedelta:表示时间间隔,即两个时间点之间的长度

    5、datetime.tzinfo:与时区相关信息

>>> a = datetime.datetime.now()
datetime.datetime(2018, 2, 26, 12, 8, 18, 805166) >>> import time
>>> d2 = datetime.date.fromtimestamp(time.time()) # 时间戳转化为年月日
datetime.date(2018, 2, 26) >>> d2.timetuple() # 转化为时间对象
time.struct_time(tm_year=2018, tm_mon=2, tm_mday=26, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=0, tm_yday=57, tm_isdst=-1) # 时间运算
>>> a = datetime.datetime.now()
>>> t1 = datetime.timedelta(1)
>>> a - t1
datetime.datetime(2018, 2, 25, 13, 37, 13, 812339) >>> a - datetime.timedelta(days=1)
datetime.datetime(2018, 2, 25, 13, 37, 13, 812339)
>>> a - datetime.timedelta(days=3)
datetime.datetime(2018, 2, 23, 13, 37, 13, 812339)
# 还支持hours、minutes、secends的运算
>>> a - datetime.timedelta(hours=3)
datetime.datetime(2018, 2, 26, 10, 37, 13, 812339)
>>> a + datetime.timedelta(hours=3)
datetime.datetime(2018, 2, 26, 16, 37, 13, 812339) # 时间替换
>>> n = datetime.datetime.now()
>>> n.replace(year=2016)
datetime.datetime(2016, 2, 26, 13, 45, 26, 863002)
>>> n.replace(year=2017,month=4)
datetime.datetime(2017, 4, 26, 13, 45, 26, 863002)
>>> n.replace(year=2017,month=4,day=13)
datetime.datetime(2017, 4, 13, 13, 45, 26, 863002) # replace实现时间计算
>>> expire_year = time.localtime()[0] # 当前年份
>>> expire_date = datetime.datetime.now().replace(year=expire_year+10).strftime('%Y-%m-%d')
>>> expire_date
'2028-03-25'

time&datetime模块的更多相关文章

  1. python中datetime模块

    Python提供了多个内置模块用于操作日期时间,像calendar,time,datetime.time模块我在之前的文章已经有所介绍,它提供 的接口与C标准库time.h基本一致.相比于time模块 ...

  2. python datetime模块参数详解

    Python提供了多个内置模块用于操作日期时间,像calendar,time,datetime.time模块,它提供 的接口与C标准库time.h基本一致.相比于time模块,datetime模块的接 ...

  3. Python处理时间 time && datetime 模块

    Python处理时间 time  &&  datetime 模块 个人整理,获取时间方式: import datetime import time #获取当前时间:Thu Nov 03 ...

  4. python time模块和datetime模块详解

    一.time模块 time模块中时间表现的格式主要有三种: a.timestamp时间戳,时间戳表示的是从1970年1月1日00:00:00开始按秒计算的偏移量 b.struct_time时间元组,共 ...

  5. python-Day5-深入正则表达式--冒泡排序-时间复杂度 --常用模块学习:自定义模块--random模块:随机验证码--time & datetime模块

    正则表达式   语法:             mport re #导入模块名 p = re.compile("^[0-9]") #生成要匹配的正则对象 , ^代表从开头匹配,[0 ...

  6. python datetime模块strptime/strptime format常见格式命令_施罗德_新浪博客

    python datetime模块strptime/strptime format常见格式命令_施罗德_新浪博客     python datetime模块strptime/strptime form ...

  7. Python datetime模块的datetime类

    datetime模块定义了下面这几个类: datetime.date:表示日期的类.常用的属性有year, month, day. datetime.time:表示时间的类.常用的属性有hour, m ...

  8. python处理时间--- datetime模块

    1   Python提供了多个内置模块用于操作日期时间,像calendar,time,datetime.time模块我在之前的文章已经有所介绍,它提供的接口与C标准库time.h基本一致.相比于tim ...

  9. Python,datetime模块实例

    Python的标准模块datetime模块,在我们的工作中应用非常频繁,下面对datetime中常用的方法进行了总结和测试:对每一个方法都使用了单元测试框架Unittest来配合测试. 主要的类型有: ...

  10. python3 time模块与datetime模块

    time模块 在Python中,通常有这几种方式来表示时间:1)时间戳 2)格式化的时间字符串 3)元组(struct_time)共九个元素.由于Python的time模块实现主要调用C库,所以各个平 ...

随机推荐

  1. Leetcode 25. Reverse Nodes in k-Group 以每组k个结点进行链表反转(链表)

    Leetcode 25. Reverse Nodes in k-Group 以每组k个结点进行链表反转(链表) 题目描述 已知一个链表,每次对k个节点进行反转,最后返回反转后的链表 测试样例 Inpu ...

  2. Linux crontab定时任务命令使用记录

    安装crontab 使用 crontab -v 如果提示没有该命令,则需要安装.安装也很简单,推荐使用yum安装.一条命令即可(yum install crontab),这里不多介绍. 下面是一些基础 ...

  3. AngularJS 1.x系列:AngularJS服务-Service

    1. AngularJS服务 AngularJS可注入类型包括:Service.Factory.Provider.Value及Constant. 2. Service AngularJS Servic ...

  4. SpringBoot 入门 Demo

    SpringBoot   入门 Demo Spring Boot是由Pivotal团队提供的全新框架,其设计目的是用来简化新Spring应用的初始搭建以及开发过程.该框架使用了特定的方式来进行配置,从 ...

  5. LeetCode10. 正则表达式匹配

    10. 正则表达式匹配 描述 给定一个字符串 (s) 和一个字符模式 (p).实现支持 '.' 和 '*' 的正则表达式匹配. '.' 匹配任意单个字符. '*' 匹配零个或多个前面的元素. 匹配应该 ...

  6. IE9以下程序开发不兼容项目罗列

    1. 提前关闭iframe,脚本将不再执行 IE下的js不是缓存在站点系统中,而是缓存在每个单独页面系统中的,当关闭页面,对应引入的脚本将不再执行. 可能出现两种情况: iframe引入的html页面 ...

  7. C++指针传递和引用传递的区别 (转载整理)

    区别1:指针传递和引用传递是以不同的方式实现相同的效果,但是指针传递的本质还是值传递,只是传递的值是地址. 就拿 交换两个数的函数来举例: // 指针传递 void swap(int * val1, ...

  8. 转 AIX7.2+11.2.0.4RAC实施

    参考 https://blog.csdn.net/alangmei/article/details/18310381 https://blog.csdn.net/smasegain/article/d ...

  9. http请求报文和响应报文(2)

    接上篇: 3.回应报文 理解回应报文,首先要弄清回应报文中的状态码. 相比于请求报文,对于响应报文,个人觉得还蛮有趣的. 主要由三部分组成:协议版本.状态码.状态码描述 3.1状态码 **常见的状态码 ...

  10. Epplus导出Excel(DataTable)

    1.先将dataTable转换成流 public Stream DataTableToExcel(DataTable dataTable, string[] columns, string sheet ...