【1】模塊功能
time是用于日期時(shí)間處理的模塊
【2】相關(guān)函數(shù)及使用
1、time.time():獲取從1970年1月1日00:00:00到現(xiàn)在的秒數(shù)
print(time.time())
2党瓮、time.localtime():格式化獲取1970年1月1日00:00:00到現(xiàn)在的時(shí)間
print(time.localtime())
3、time.strftime():自定義格式輸出時(shí)間
print(time.strftime('%Y-%m-%d %H:%M:%S'))
4兼贸、datetime.datetime.now():獲取當(dāng)前日期時(shí)間
print(datetime.datetime.now())
5、datetime.timedelta(minutes=10):生成時(shí)間對(duì)象吃溅,用于時(shí)間處理
newtime = datetime.timedelta(munites=10)
print(datetime.datetime.new() + newtime)