Python 的 time 模块导入及其方法

2021-05-17 21:30

阅读:337

标签:调用   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之函数

下一篇:Java_流相关


评论


亲,登录后才可以留言!