主頁(yè) > 知識(shí)庫(kù) > 一篇文章帶你了解python標(biāo)準(zhǔn)庫(kù)--datetime模塊

一篇文章帶你了解python標(biāo)準(zhǔn)庫(kù)--datetime模塊

熱門標(biāo)簽:西藏房產(chǎn)智能外呼系統(tǒng)要多少錢 宿遷星美防封電銷卡 ai電銷機(jī)器人源碼 百度地圖標(biāo)注沒有了 長(zhǎng)沙高頻外呼系統(tǒng)原理是什么 外呼并發(fā)線路 ai電話機(jī)器人哪里好 地圖標(biāo)注審核表 湛江智能外呼系統(tǒng)廠家

1. datetime模塊介紹

1.1 datetime模塊包含的類

1.2 datetime模塊中包含的常量

2. datetime實(shí)例的方法


案例代碼

import locale
from datetime import datetime,date,time
locale.setlocale(locale.LC_CTYPE, 'chinese')
print(datetime.now())      #返回當(dāng)天的日期和時(shí)間,datetime類型
today=datetime.now()        #定義today為當(dāng)前日期時(shí)間對(duì)象
print(datetime.date(today)) #返回當(dāng)天的日期對(duì)象,date類型
print(datetime.time(today)) #返回當(dāng)天的時(shí)間對(duì)象,time類型
print(datetime.ctime(today)) #獲取“星期,月,日,時(shí),分,秒,年”格式的字符串
print(datetime.utcnow())    #返回當(dāng)前的UTC日期和時(shí)間,datetime類型
print(datetime.timestamp(today))   #返回當(dāng)天的時(shí)間戳(UNIX時(shí)間戳),浮點(diǎn)數(shù)類型
print(datetime.fromtimestamp(datetime.timestamp(today)))   #根據(jù)時(shí)間戳返回UTC日期時(shí)間,datetime類型
date1=date(2018,2,12)
time1=time(20,53,48)
print(datetime.combine(date1,time1))   #綁定日期、時(shí)間,生成新的datetime對(duì)象
newDatetime=datetime.strptime('2021-08-03 22:53:0', '%Y-%m-%d %H:%M:%S')  #使用字符串和指定格式生成新的datetime對(duì)象
print(newDatetime)
for tv in datetime.timetuple(today):
    print(tv)
print(today.isocalendar())     #ISO格式的日期
print(today.strftime("%Y年%m月%d日 %H:%M:%S %p"))

結(jié)果

3. 日期格式化符號(hào)

strftime()方法和strptime()方法的時(shí)間日期格式化符號(hào)及所代表意思

總結(jié)

本篇文章就到這里了,希望能給你帶來(lái)幫助,也希望您能夠多多關(guān)注腳本之家的更多內(nèi)容!

您可能感興趣的文章:
  • Python time.time()方法
  • 一篇文章帶你了解python標(biāo)準(zhǔn)庫(kù)--time模塊
  • python標(biāo)準(zhǔn)庫(kù)之time模塊的語(yǔ)法與簡(jiǎn)單使用
  • 淺談Python3中datetime不同時(shí)區(qū)轉(zhuǎn)換介紹與踩坑
  • python常見模塊之OS模塊和time模塊
  • Python time庫(kù)的時(shí)間時(shí)鐘處理
  • python語(yǔ)言time庫(kù)和datetime庫(kù)基本使用詳解
  • 關(guān)于python time庫(kù)整理匯總

標(biāo)簽:盤錦 漯河 林芝 普洱 海南 南平 大同 寧夏

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《一篇文章帶你了解python標(biāo)準(zhǔn)庫(kù)--datetime模塊》,本文關(guān)鍵詞  一篇,文章,帶你,了解,python,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《一篇文章帶你了解python標(biāo)準(zhǔn)庫(kù)--datetime模塊》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于一篇文章帶你了解python標(biāo)準(zhǔn)庫(kù)--datetime模塊的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章