#時間戳轉換為日期格式
deftimestamp_datetime
(value,format):
# 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
#日期格式轉換為時間戳
defdatetime_timestamp
(dt,format):
#dt為字串
#中間過程,一般都需要將字串轉化為時間陣列
#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,format))
return int(s)
#某種格式轉換為其他格式
defdatetime_datetime
(dt,format,toformat):
return time.strftime(toformat,time.strptime(dt,format))
Python 使用記錄(累計記錄)
2 pandas 設定 3 pandas 操作 4 笛卡爾積 1 列表轉字串list1 department of biology str1 join list1 print str1 department of biology2 從列表中刪除元素 要刪除的元素的型別必須與列表中的元素的型別相同 l...
Python 日常使用記錄
python的排序函式sort,sorted在列表排序和字典排序中的應用詳解和舉例,python 列表list中內建了乙個十分有用的排序函式sort,sorted,它可以用於列表的排序,以下是例子。a 5,2,1,9,6 sorted a 將a從小到大排序,不影響a本身結構 1,2,5,6,9 so...
python使用常用部落格記錄
大o表示法演算法複雜度速查表 big o algorithm complexity cheat sheet python 使用 with open as 讀寫檔案 python 函式裝飾器及用法 超級詳細 python中 args和 kwargs的區別 python 詳解命令列解析 argparse...