time"""時間三種表現形式
1.時間戳(秒數)
2.結構化時間(一般是給機器看的)
3.格式化時間(一般是給人看的)
三種時間是可以相互轉換的!!!
"""1.time.sleep() #
原地阻塞指定的秒數
2.time.time() #
獲取時間戳時間
strftime
time.strftime(
'%y-%m-%d
') #
年月日#
%h:%m:%s = %x 時分秒
localtime
time.localtime()
#本地時間
#time.struct_time
#tm_year=2021,
#tm_mon=11,
#tm_mday=25,
#tm_hour=19,
#tm_min=21,
#tm_sec=2,。
#tm_wday=3,
#tm_yday=329,
#tm_isdst=0)
gmtime
#結構化時間
datetime
1.date 年月日
2.datetime 年月日時分秒
3.time 時分秒
import
datetime
(datetime.date.today()
(datetime.datetime.today())
4.timedelta 時間差
datetime.timedelta(days=3)
"""日期物件 = 日期物件 +/- timedelta物件
timedelta物件 = 日期物件 +/- 日期物件
python時間模組 time和datetime
python 中時間表示方法有 時間戳,即從1975年1月1日00 00 00到現在的秒數 格式化後的時間字串 時間struct time 元組。struct time元組中元素主要包括tm year 年 tm mon 月 tm mday 日 tm hour 時 tm min 分 tm sec 秒 ...
常用模組之time模組
import time 獲取當前的時間戳 浮點型 floatstamp time.time print floatstamp 獲取當前的時間戳 整型 intstamp int time.time print intstamp 從返回的浮點數的時間戳轉成時間元組 localtime time.loca...
Python常用模組之time模組
python中的time和datetime模組是時間方面的模組 time模組中時間表現的格式主要有三種 1 timestamp 時間戳,時間戳表示的是從1970年1月1日00 00 00開始按秒計算的偏移量 2 struct time 時間元組,共有九個元素組。3 format time 格式化時間...