obj_temp=time.gmtime()#可以輸入時間戳和time.ctime()一樣
print(obj_temp.tm_wday)
time.struct_time(tm_year=2016, tm_mon=9, tm_mday=21, tm_hour=14, tm_min=41, tm_sec=33, tm_wday=2, tm_yday=265, tm_isdst=0)
time.gtime()和time.localtime()功能一樣,都是time.struct_time()樣式
print(data)
print(time.mktime(time.gmtime()))#做成時間戳
print(time.strptime("16","%y"))
import datetime
print(datetime.date.today())
print(datetime.date.fromtimestamp(time.time()-86400))
print(datetime.datetime.now())
now=datetime.datetime.now().timetuple()#轉化成structime
print(now)
now=datetime.datetime.now().timestamp()#轉化成時間戳
print(now)
now=datetime.datetime.now().weekday()#看周幾,預設周一是0
print(now)
print(now-datetime.timedelta(weeks=10))#當前時間減去十周
new_now=now.replace(2017,8,12)#回到某年某月的日期
print(new_now)
Python學習 time模組使用
usr bin python encoding utf 8 date 2018 05 12 y 兩位數的年份00 99 y 四位數的年份000 9999 m 月份01 12 d 日01 31 h 小時 24小時制即0 23點 i 小時 12小時制01 12 m 分鐘 s 秒 print 小結 pri...
random模組time模組
import time time.time 從1970年到現在,一共過了多少秒 一般這麼用 t1 time.time code running time to be count t2 time.time total t2 t1 time.strftime y 2020 年 time.strftime...
時間模組 time模組
1.時間戳 time time 從1970 至今過了多少秒 時間戳 格式化時間 時間物件 print time.time 2.格式時間 time.strftime y m d h m s str formate time 格式為字串 y year with century as a decimal ...