Python 日期和时间,Python日期时间,time.time(
Python 日期和时间,Python日期时间,time.time(
time.time()获取当前时间戳
例如:
#!/usr/bin/python# -*- coding: UTF-8 -*-import time; # 引入time模块ticks = time.time()print "当前时间戳为:", ticks
结果:
当前时间戳为: 1491750320.74
时间元组
比如获取当前时间:
#!/usr/bin/python# -*- coding: UTF-8 -*-import timelocaltime = time.localtime(time.time())print "本地时间为 :", localtime
获取格式化的时间
localtime = time.asctime( time.localtime(time.time()) )print "本地时间为 :", localtime
结果:
本地时间为 : Sun Apr 09 23:12:15 2017
格式化日期
格式有点类似java的日期格式化
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"))
结果:
2017-04-09 23:13:50Sun Apr 09 23:13:50 20171459175064.0
日期格式化符号
获取某月日历
直接以日历的形式显示某月的信息
2017年4月份的日历:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import calendar
cal = calendar.month(2017, 4)
print "以下输出2017年4月份的日历:"
print cal;
显示结果:
以下输出2017年4月份的日历:
April 2017
Mo Tu We Th Fr Sa Su
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Time 模块
日历(Calendar)模块
Python 日期和时间
相关内容
- 推荐一些相见恨晚的 Python 库 「一」,python,原创 2017
- python的与或非运算,python非运算,真的很重要,栽了个跟
- Python里面有许多成熟方便的库,,python有许多方便,Py
- python3--内置函数,python3--内置,python3--内
- python-修行第二天,python-修行,day_2学习一.
- Python_xldr的使用,Python_xldr使用,Python里面关于
- python----常用模块,python----模块,一、模块、包1.1
- Python字符串格式化%s%d%f详解,python字符串%s%d%f
- python2与python3的print及字符串格式化小结,python2python3
- python 实现数字字符串左侧补零的方法,python字符串
评论关闭