python3 時間模組常用方法

2021-09-06 23:39:47 字數 729 閱讀 1967

import time

import datetime

# 時間戳 用於計算

print(time.time())

# -----時間戳轉換成結構化時間-----

print(time.localtime(15465268214)) # 當地時間

print(time.gmtime()) # 世界標準時間utc

# -----將結構化時間轉化成時間戳-----

print(time.mktime(time.localtime()))

# -----將結構化時間轉換成字串時間-----

print(time.strftime('%y-%m-%d %x', time.localtime()))

# -----將字串時間轉換成結構化時間-----

print(time.strptime('2019-1-16 22:57:36', '%y-%m-%d %x'))

# -----將結構化時間轉換成固定格式的字串時間-----

print(time.asctime())

# -----將結時間戳轉換成固定格式的字串時間-----

print(time.ctime())

# -----常見格式的字串時間-----

print(datetime.datetime.now()) # 2019-01-03 23:08:10.794608

python3時間 Python3 時間處理

usr bin python3 import time 引入time模組 python3 日期和時間 當前時間戳 ticks time.time print 當前時間戳為 ticks 當前時間戳為 1522024006.313911 完全版本地時間 localtime time.localtime ...

Python3 時間格式

coding utf 8 import time import datetime defget tentime 獲取精確到秒的時間戳 十位 return int time.time defget timesecond 獲取精確到毫秒的時間戳 十三位 millis int round time.tim...

python 3 時間處理

python time strftime 方法 描述python time strftime 函式接收以時間元組,並返回以可讀字串表示的當地時間,格式由引數format決定。語法strftime 方法語法 time.strftime format t 引數format 格式字串。t 可選的引數t是乙...