Python time, datetime模块常用方法

1、使用time模块,获取当前时间戳
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
import time
time.time()
Out[3]: 1546046383.663

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

 
2、将一个时间戳转化为结构化的元组  struct_time
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
time.localtime(1546046383.663)
Out[4]: time.struct_time(tm_year=2018, tm_mon=12, tm_mday=29, tm_hour=9, tm_min=19, tm_sec=43, tm_wday=5, tm_yday=363, tm_isdst=0)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

3、已知时间戳,格式化字符串形式的时间输出
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(1546046383.663))
Out[5]: '2018-12-29 09:19:43'

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

4、直接格式化输出当前时间
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
time.strftime('%Y-%m-%d %H:%M:%S')
Out[6]: '2018-12-29 09:27:50'

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

5、获取毫秒级精度的时间,使用datetime模块
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
import datetime
datetime.datetime.now()
Out[8]: datetime.datetime(2018, 12, 29, 9, 30, 38, 269000)
datetime.datetime.now().isoformat()
Out[9]: '2018-12-29T09:31:11.487000'
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
等效方法
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
datetime.datetime.today().isoformat()
Out[16]: '2018-12-29T09:38:19.502000'
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

6、从时间戳转到格式化时间字符串,精确到毫秒
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
datetime.datetime.fromtimestamp(time.time()).strftime('%Y-%m-%d %H:%M:%S.%f')
Out[12]: '2018-12-29 09:33:06.735000'

datetime.datetime.fromtimestamp(1546046383.663).strftime('%Y-%m-%d %H:%M:%S.%f')
Out[13]: '2018-12-29 09:19:43.663000'
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

7、将结构化的元组时间格式转为时间戳格式, time.maketime(元组类型时间)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
time.mktime(datetime.datetime.now().timetuple())
Out[21]: 1546047923.0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

8、字符串格式的时间提取,转为结构化元组格式,进而转化为时间戳格式。 strptime(时间字符串, 时间格式)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
time.strptime('2018-12-29 09:49:36','%Y-%m-%d %H:%M:%S')
Out[22]: time.struct_time(tm_year=2018, tm_mon=12, tm_mday=29, tm_hour=9, tm_min=49, tm_sec=36, tm_wday=5, tm_yday=363, tm_isdst=-1)

time.mktime(time.strptime('2018-12-29 09:49:36','%Y-%m-%d %H:%M:%S'))
Out[23]: 1546048176.0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

 

Python 时间格式转换的更多相关文章

  1. 记一次python时间格式转换遇到的坑

    需求:拿到指定格式的时间的前一天的时间,如果今天是月初,年初,自动转换,比如:输入时间是:2019-06-27 23:59:59输出时间是:2019-06-26 23:59:59 之前用datetim ...

  2. Python datatime 格式转换,插入MySQL数据库

    Python datatime 格式转换,插入MySQL数据库 zoerywzhou@163.com http://www.cnblogs.com/swje/ 作者:Zhouwan 2017-11-2 ...

  3. SQL Server日期时间格式转换字符串详解 (详询请加qq:2085920154)

    在SQL Server数据库中,SQL Server日期时间格式转换字符串可以改变SQL Server日期和时间的格式,是每个SQL数据库用户都应该掌握的.本文我们主要就介绍一下SQL Server日 ...

  4. SQL Server日期时间格式转换字符串

    在SQL Server数据库中,SQL Server日期时间格式转换字符串可以改变SQL Server日期和时间的格式,是每个SQL数据库用户都应该掌握的.本文我们主要就介绍一下SQL Server日 ...

  5. MySQL时间戳和时间格式转换函数

    MySQL时间戳和时间格式转换函数:unix_timestamp and from_unixtime unix_timestamp将时间转化成时间戳格式.from_unixtime将时间戳转化成时间格 ...

  6. Sql日期时间格式转换;取年 月 日,函数:DateName()、DATEPART()

    一.sql server2000中使用convert来取得datetime数据类型样式(全) 日期数据格式的处理,两个示例: CONVERT(varchar(16), 时间一, 20) 结果:2007 ...

  7. SQL Server日期时间格式转换字符串详解

    本文我们主要介绍了SQL Server日期时间格式转换字符串的相关知识,并给出了大量实例对其各个参数进行对比说明,希望能够对您有所帮助. 在SQL Server数据库中,SQL Server日期时间格 ...

  8. sql 日期时间格式转换

    Sql日期时间格式转换   sql server2000中使用convert来取得datetime数据类型样式(全) 日期数据格式的处理,两个示例: CONVERT(varchar(16), 时间一, ...

  9. [php基础]Mysql日期函数:日期时间格式转换函数详解

    在PHP网站开发中,Mysql数据库设计中日期时间字段必不可少,由于Mysql日期函数输出的日期格式与PHP日期函数之间的日期格式兼容性不够,这就需要根据网站实际情况使用Mysql或PHP日期转换函数 ...

随机推荐

  1. Why does my Authorize Attribute not work?

    the roles of a ClaimsPrincipal are actually just claims create with a type of ClaimsIdentity.RoleCla ...

  2. Image Processing, Analysis & and Machine Vision - A MATLAB Companion

    Contents目录 Chapter 0: Introduction to the companion book本辅导书简介 Chapter 1: Introduction 简介 Viewing an ...

  3. 编写高质量代码改善C#程序的157个建议——建议54:为无用字段标注不可序列化

    建议54:为无用字段标注不可序列化 序列化是指这样一种技术:把对象转变成流.相反过程,我们称为反序列化.在很多场合都需要用到这项技术. 把对象保存到本地,在下次运行程序的时候,恢复这个对象. 把对象传 ...

  4. Jackson Streaming API to read and write JSON

    Jackson supports read and write JSON via high-performance Jackson Streaming APIs, or incremental mod ...

  5. windows phone之山寨win8圆形进度条

    <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" x ...

  6. Ubuntu在用root账户使用xftp连接时提示拒绝连接

    一般来说Linux不允许使用root账户连接,修改配置 vi /etc/ssh/sshd_config #Authentication: LoginGraceTime PermitRootLogin ...

  7. IIS部署SSL,.crt .key 的证书,怎么部署到IIS

    SSL连接作用不说,百度很多.因为最近想考虑重构一些功能,在登录这块有打算弄成HTTPS的,然后百度了,弄成了,就记录一下,以便以后万一部署的时候忘记掉. 做实验的时候,拿的我个人申请的已经备案的域名 ...

  8. Linux安装Oracle调整tmpfs以突破1.7G的限制

    调整/dev/shm的大小 ---------------------------------------------------------1.查看大小 df -h /dev/shm [@more@ ...

  9. Object C语法学习笔记(二)

    1.@property与@synthesize配对使用. @property预编译指令的作用是自动声明属性的setter和getter方法. @synthesize 创建了该属性的访问代码 功能:让编 ...

  10. Linux解压工具

    指令 yum  install lrzsz