python datetime 字串 時間戳

2021-09-10 09:15:05 字數 773 閱讀 3589

#把datetime轉成字串

def datetime_tostring(dt):

return dt.strftime("%y-%m-%d-%h")

#把字串轉成datetime

def string_todatetime(string):

return datetime.strptime(string, "%y-%m-%d-%h")

#把字串轉成時間戳形式

def string_totimestamp(strtime):

return time.mktime(string_todatetime(strtime).timetuple())

#把時間戳轉成字串形式

def timestamp_tostring(stamp):

return time.strftime("%y-%m-%d-%h", tiem.localtime(stamp))

#把datetime型別轉外時間戳形式

def datetime_totimestamp(datetime):

return time.mktime(datetime.timetuple())

#把時間戳轉成datetime型別

import datetime,time

t=int(time.time())

b=datetime.datetime.fromtimestamp(t)

print(type(t),type(b))#

python datetime處理時間

datetime date time都提供了strftime 方法,該方法接收乙個格式字串,輸出日期時間的字串表示。下表是從python手冊中拉過來的,我對些進行了簡單的翻譯 翻譯的有點噢口 格式字元 意義 a 星期的簡寫。如 星期三為web a星期的全寫。如 星期三為wednesday b月份的簡...

python datetime學習筆記

import datetime d datetime.date 2016,7,24 新建乙個日期,注意前面的0不能有 print d 20106 07 24 d datetime.date.today 獲取當前日期 print d print d.year,d.month,d.day print d...

Python datetime模組小結

模組小結如下 另外有time模組小結 from datetime import date,time,datetime,timedelta datetime.now 當前日期元組 datetime.today 當前日期元組 d1 2018 05 09 10 20 15 d2 2018 06 02 08...