python基礎 日期time

2021-07-31 23:25:11 字數 523 閱讀 9810

#匯入日期模組

import time

print time.time() #獲取當前時間

localtime = time.localtime(time.time()) #把字元型轉成日期型

print localtime

print type(localtime) ##把日期型按照一定格式轉成str型別

time1 = time.strftime('%y年%m月%d日', localtime) #第乙個引數為格式化的樣式,第二的引數為序列型別(argument must be 9-item sequence)

print time1

print type(time1)

#把字串parse成為日期型

str1 = '2023年5月12日'

time2 = time.strptime(str1, "%y年%m月%d日")

print time2

print type(time2) #

python 日期模組 (time模組)

在python中與事件處理相關的模組有 time datetime calendar 這裡先講解time模組 1.time 模組的引入用import time 1 time.time 返回當前時間的時間戳 1970紀元後經過的浮點秒數 返回結果資料型別是float import time temp ...

Python基礎時間庫 time

1 介紹 在python中包含了若干個能夠處理時間的庫,而time庫是最基本的乙個,是python中處理時間的標準庫。time庫能夠表達計算機時間,提供獲取系統時間並格式化輸出的方法,提供系統級精確計時功能 可以用於程式效能分析 time庫包含三類函式,以下介紹常用的函式 時間獲取 time cti...

Python日期格式化 time模組

time.struct time tm year 2019 tm mon 5,tm mday 17,tm hour 14,tm min 26,tm sec 53,tm wday 4,tm yday 137,tm isdst 0 time.struct time tm year 2019 tm mon...