# -*- coding: utf-8 -*-
import time
def timestamp_datetime(value):
format = '%y-%m-%d %h:%m:%s'
# value為傳入的值為時間戳(整形),如:1332888820
value = time.localtime(value)
## 經過localtime轉換後變成
## time.struct_time(tm_year=2012, tm_mon=3, tm_mday=28, tm_hour=6, tm_min=53, tm_sec=40, tm_wday=2, tm_yday=88, tm_isdst=0)
# 最後再經過strftime函式轉換為正常日期格式。
dt = time.strftime(format, value)
return dt
def datetime_timestamp(dt):
#dt為字串
#中間過程,一般都需要將字串轉化為時間陣列
time.strptime(dt, '%y-%m-%d %h:%m:%s')
## time.struct_time(tm_year=2012, tm_mon=3, tm_mday=28, tm_hour=6, tm_min=53, tm_sec=40, tm_wday=2, tm_yday=88, tm_isdst=-1)
#將"2012-03-28 06:53:40"轉化為時間戳
s = time.mktime(time.strptime(dt, '%y-%m-%d %h:%m:%s'))
return int(s)
if __name__ == '__main__':
d = datetime_timestamp('2012-03-28 06:53:40')
print d
s = timestamp_datetime(1332888820)
print s
(1)例如格式2012-07-31 00:01:18,根據該時間計算時間戳:
將"2012-03-28 06:53:40"轉化為時間戳
s = time.mktime(time.strptime('2012-03-28 06:53:40', '%y-%m-%d %h:%m:%s'))
(2)根據時間戳得到如2012-07-31 00:01:18的時間格式,顯示的時間形式可以根據format指定的
import time
timestamp = time.strftime('%y-%m-%d %h:%m:%s', time.localtime("2012-07-31 00:01:18"))
時間戳轉時間
tvalue = time.localtime(int(str(value)[:10])
dt = time.strftime(format, tvalue)
Python 處理理時間超詳細轉的
coding utf 8 import time def timestamp datetime value format y m d h m s value為傳入的值為時間戳 整形 如 1332888820 value time.localtime value 經過localtime轉換後變成 ti...
轉 python時間格式處理
import time import datetime t time.time print t 原始時間資料 print int t 秒級時間戳 print int round t 1000 毫秒級時間戳 print int round t 1000000 微秒級時間戳返回 1499825149.2...
python基礎(超詳細)
初始學習從簡單的概念開始,基本概念的記憶和理解都是很重要的,不要知識一味的追求快速提公升,而忽略了基礎知識,下面就讓我們一起學習吧 人生苦短,我學pyothon 概念篇 首先從幾個概念開始 1 表示式就是乙個類似於數學公式的東西 eg 10 5 8 4 2 語句 在程式語句中完成某種功能 print...