Python 的 time 模块导入及其方法

Posted 学无边涯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 的 time 模块导入及其方法相关的知识,希望对你有一定的参考价值。

时间模块很重要,Python 程序能用很多方式处理日期和时间,转换日期格式是一个常见的功能,讲解一下Python 的 time 模块导入及其方法。

1,time 模块导入

import time; # 引入time模块

ticks = time.time()

print "当前时间戳为:", ticks

输出结果 时间戳

2,其方法调用

时间戳 → 时间元组 time.localtime(1538271871.226226)

时间元组 → 时间戳 time.mktime((2018, 9, 30, 9, 44, 31, 6, 273, 0))

以上就是时间模块的常见用法, 时间戳 → 时间元组,时间元组 → 时间戳 多多练习

文章来自 http://www.96net.com.cn/

以上是关于Python 的 time 模块导入及其方法的主要内容,如果未能解决你的问题,请参考以下文章

Python_base_03 导包

python之模块

Python导模块问题

python模块之time_random

python------模块定义导入优化 ------time模块

python之导入模块的方法