溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Python使用time模塊將時間字符串格式化

發(fā)布時間:2021-02-26 16:11:56 來源:億速云 閱讀:382 作者:戴恩恩 欄目:開發(fā)技術

本文章向大家介紹如何在Python使用time模塊將時間字符串格式化的基本知識點總結和需要注意事項,具有一定的參考價值,需要的朋友可以參考一下。

python是什么意思

Python是一種跨平臺的、具有解釋性、編譯性、互動性和面向對象的腳本語言,其最初的設計是用于編寫自動化腳本,隨著版本的不斷更新和新功能的添加,常用于用于開發(fā)獨立的項目和大型項目。

關于時間戳的幾個概念

時間戳,根據(jù)1970年1月1日00:00:00開始按秒計算的偏移量。

時間元組(struct_time),包含9個元素。

time.struct_time(tm_year=2017, tm_mon=10, tm_mday=1, tm_hour=14, tm_min=21, tm_sec=57, tm_wday=6, tm_yday=274, tm_isdst=0)

時間格式字符串,字符串形式的時間。

time模塊與時間戳和時間相關的重要函數(shù)

time.time() 生成當前的時間戳,格式為10位整數(shù)的浮點數(shù)。

time.strftime()根據(jù)時間元組生成時間格式化字符串。

time.strptime()根據(jù)時間格式化字符串生成時間元組。time.strptime()與time.strftime()為互操作。

time.localtime()根據(jù)時間戳生成當前時區(qū)的時間元組。

time.mktime()根據(jù)時間元組生成時間戳。

示例

關于時間戳和格式化字符串的簡單示例如下

import time

#生成當前時間的時間戳,只有一個參數(shù)即時間戳的位數(shù),默認為10位,輸入位數(shù)即生成相應位數(shù)的時間戳,比如可以生成常用的13位時間戳
def now_to_timestamp(digits = 10):
 time_stamp = time.time()
 digits = 10 ** (digits -10)
 time_stamp = int(round(time_stamp*digits))
 return time_stamp

#將時間戳規(guī)范為10位時間戳
def timestamp_to_timestamp10(time_stamp):
 time_stamp = int (time_stamp* (10 ** (10-len(str(time_stamp)))))
 return time_stamp

#將當前時間轉換為時間字符串,默認為2017-10-01 13:37:04格式
def now_to_date(format_string="%Y-%m-%d %H:%M:%S"):
 time_stamp = int(time.time())
 time_array = time.localtime(time_stamp)
 str_date = time.strftime(format_string, time_array)
 return str_date

#將10位時間戳轉換為時間字符串,默認為2017-10-01 13:37:04格式
def timestamp_to_date(time_stamp, format_string="%Y-%m-%d %H:%M:%S"):
 time_array = time.localtime(time_stamp)
 str_date = time.strftime(format_string, time_array)
 return str_date

#將時間字符串轉換為10位時間戳,時間字符串默認為2017-10-01 13:37:04格式
def date_to_timestamp(date, format_string="%Y-%m-%d %H:%M:%S"):
 time_array = time.strptime(date, format_string)
 time_stamp = int(time.mktime(time_array))
 return time_stamp

#不同時間格式字符串的轉換
def date_style_transfomation(date, format_string1="%Y-%m-%d %H:%M:%S",format_string2="%Y-%m-%d %H-%M-%S"):
 time_array = time.strptime(date, format_string1)
 str_date = time.strftime(format_string2, time_array)
 return str_date

實驗

print(now_to_date())
print(timestamp_to_date(1506816572))
print(date_to_timestamp('2017-10-01 08:09:32'))
print(timestamp_to_timestamp10(1506816572546))
print(date_style_transfomation('2017-10-01 08:09:32'))

結果為

1506836224000
2017-10-01 13:37:04
2017-10-01 08:09:32
1506816572
1506816572
2017-10-01 08-09-32

以上就是小編為大家?guī)淼娜绾卧赑ython使用time模塊將時間字符串格式化的全部內容了,希望大家多多支持億速云!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI