Python time strptime()方法
Python time strptime()方法
Python time strptime() 函數(shù)根據(jù)指定的格式把一個(gè)時(shí)間字符串解析為時(shí)間元組。
語(yǔ)法
strptime()方法語(yǔ)法:
time.strptime(string[, format])
參數(shù)
- string -- 時(shí)間字符串。
- format -- 格式化字符串。
返回值
返回struct_time對(duì)象。
說(shuō)明
python中時(shí)間日期格式化符號(hào):
- %y 兩位數(shù)的年份表示(00-99)
- %Y 四位數(shù)的年份表示(000-9999)
- %m 月份(01-12)
- %d 月內(nèi)中的一天(0-31)
- %H 24小時(shí)制小時(shí)數(shù)(0-23)
- %I 12小時(shí)制小時(shí)數(shù)(01-12)
- %M 分鐘數(shù)(00-59)
- %S 秒(00-59)
- %a 本地簡(jiǎn)化星期名稱
- %A 本地完整星期名稱
- %b 本地簡(jiǎn)化的月份名稱
- %B 本地完整的月份名稱
- %c 本地相應(yīng)的日期表示和時(shí)間表示
- %j 年內(nèi)的一天(001-366)
- %p 本地A.M.或P.M.的等價(jià)符
- %U 一年中的星期數(shù)(00-53)星期天為星期的開(kāi)始
- %w 星期(0-6),星期天為 0,星期一為 1,以此類推。
- %W 一年中的星期數(shù)(00-53)星期一為星期的開(kāi)始
- %x 本地相應(yīng)的日期表示
- %X 本地相應(yīng)的時(shí)間表示
- %Z 當(dāng)前時(shí)區(qū)的名稱
- %% %號(hào)本身
實(shí)例
以下實(shí)例展示了 strptime() 函數(shù)的使用方法:
#!/usr/bin/python # -*- coding: UTF-8 -*- import time struct_time = time.strptime("30 Nov 00", "%d %b %y") print "返回的元組: %s " % struct_time
以上實(shí)例輸出結(jié)果為:
返回的元組: time.struct_time(tm_year=2000, tm_mon=11, tm_mday=30, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=335, tm_isdst=-1)
相關(guān)文章
- Python 變量類型
- Python break 語(yǔ)句
- Python 模塊
- Python 文件I/O
- Python 哈希表
- Python 二叉樹(shù)
- Python 大O符號(hào)
- Python3 注釋
- Python3 文件讀寫
- Python3 面向?qū)ο?/a>
- Python3 MySQL 數(shù)據(jù)庫(kù)連接 - PyMySQL 驅(qū)動(dòng)
- Python randrange() 函數(shù)
- Python os.fchdir() 方法
- Python os.lchown() 方法
- Python isalpha()方法
- Python List remove()方法
- Python time clock()方法
- Python time gmtime()方法
- Python time mktime()方法
- Python time tzset()方法