方法預(yù)覽:
datetime.now() # 當前時間,datetime類型datetime.timestamp() # 時間戳,浮點類型datetime.strftime('%Y-%m-%d %H:%M:%S') # 格式化日期對象datetime,字符串類型datetime.strptime('2017-2-6 23:22:13', '%Y-%m-%d %H:%M:%S') # 字符串轉(zhuǎn)日期對象datetime.fromtimestamp(ts) # 獲取本地時間,datetime類型datetime.utcfromtimestamp(ts) # 獲取UTC時間,datetime類型
獲取當前時間
# coding: utf-8from datetime import datetime now = datetime.now()print(now)print(now.strftime('%Y-%m-%d %H:%M:%S'))print(type(now))
輸出:
2017-02-06 23:18:29.6246982017-02-06 23:18:29<class 'datetime.datetime'>
延伸閱讀
學習是年輕人改變自己的最好方式