Python 日期和时间

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 日期和时间相关的知识,希望对你有一定的参考价值。

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 time

localtime = 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:50
Sun Apr 09 23:13:50 2017
1459175064.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 日期和时间的主要内容,如果未能解决你的问题,请参考以下文章

如何从片段中调用 getSupportFragmentManager()?

日期选择器对话框在片段中不起作用[关闭]

JS代码片段:一个日期离现在多久了

sql 日期转换代码片段 - Dato,120,konvertere

vscode 用户代码片段 vue初始化模板 Snippet #新加入开头注释 自动生成文件名 开发日期时间等内容

超实用的php代码片段