Python 的 time 模块导入及其方法
2021-05-17 21:30
标签:调用 time() time模块 pytho 时间戳 mktime localtime int com 时间模块很重要,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 模块导入及其方法 标签:调用 time() time模块 pytho 时间戳 mktime localtime int com 原文地址:https://www.cnblogs.com/96net/p/9745548.html
文章标题:Python 的 time 模块导入及其方法
文章链接:http://soscw.com/index.php/essay/86898.html