1. 程式人生 > >Python 的 time 模塊導入及其方法

Python 的 time 模塊導入及其方法

imp com 轉換 文章 輸出結果 重要 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 模塊導入及其方法