python日期与时间

1.介绍

  Python 提供了一个 time 和 calendar 模块可以用于格式化日期和时间。

  时间间隔是以秒为单位的浮点小数。

  每个时间戳都以自从1970年1月1日午夜(历元)经过了多长时间来表示。

一:获取时间戳

1.程序

 # -*- coding: UTF-8 -*-

 import time;  # 引入time模块

 ticks = time.time()
print "当前时间戳为:", ticks

二:获取当前时间

1.时间元祖

  Python函数用一个元组装起来的9组数字处理时间

  python日期与时间

2.程序

  从返回浮点数的时间戳方式向时间元组转换,只要将浮点数传递给如localtime之类的函数。

 # -*- coding: UTF-8 -*-
import time localtime = time.localtime(time.time())
print "本地时间为 :", localtime

3.效果

  python日期与时间

三:获取格式化的时间      

1.程序

 # -*- coding: UTF-8 -*-
import time localtime = time.asctime( time.localtime(time.time()) )
print "本地时间为 :", localtime

2.效果

  python日期与时间

--------=====================================================================================日期=====================

四:格式化日期

1.介绍

  我们可以使用 time 模块的 strftime 方法来格式化日期

2.格式化符号

  python日期与时间

3.程序

 # -*- coding: UTF-8 -*-
import time # 格式化成2016-03-20 11:45:39形式
print time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) # 格式化成Sat Mar 28 22:24:24 2016形式
print time.strftime("%a %b %d %H:%M:%S %Y", time.localtime()) # 将格式字符串转换为时间戳
a = "Sat Mar 28 22:24:24 2016"
print time.mktime(time.strptime(a, "%a %b %d %H:%M:%S %Y")) print time.localtime()

4.效果

  python日期与时间

五:获取日历

1.介绍

  Calendar模块有很广泛的方法用来处理年历和月历,例如打印某月的月历

2.程序

 # -*- coding: UTF-8 -*-
import calendar cal = calendar.month(2016, 1)
print "以下输出2016年1月份的日历:"
print cal;

3.效果

  python日期与时间

六:Time模块

1.函数

  python日期与时间

七:Calendar模块

1.函数

  python日期与时间

八:相关模块

上一篇:我们的代码为什么要压缩成7z?


下一篇:iOS -- MVC的理解