黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python time strftime() 方法

Python time strftime() 方法

Python 日期和時(shí)間Python 日期和時(shí)間

Python time strftime() 函數(shù)接收以時(shí)間元組,并返回以可讀字符串表示的當(dāng)?shù)貢r(shí)間,格式由參數(shù) format 決定。

 

語(yǔ)法

strftime()方法語(yǔ)法:

time.strftime(format[, t])

 

參數(shù)

  • format -- 格式字符串。
  • t -- 可選的參數(shù)t是一個(gè)struct_time對(duì)象。

 

返回值

返回以可讀字符串表示的當(dāng)?shù)貢r(shí)間。

 

說(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),星期天為星期的開(kāi)始
  • %W 一年中的星期數(shù)(00-53)星期一為星期的開(kāi)始
  • %x 本地相應(yīng)的日期表示
  • %X 本地相應(yīng)的時(shí)間表示
  • %Z 當(dāng)前時(shí)區(qū)的名稱
  • %% %號(hào)本身

 

實(shí)例

以下實(shí)例展示了 strftime() 函數(shù)的使用方法:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

# 通過(guò)導(dǎo)入 __future__ 包來(lái)兼容 Python3.x print
# 如果使用了 Python3.x 可以刪除此行引入
from __future__ import print_function

from datetime import datetime


now = datetime.now() # current date and time

year = now.strftime("%Y")
print("year:", year)

month = now.strftime("%m")
print("month:", month)

day = now.strftime("%d")
print("day:", day)

time = now.strftime("%H:%M:%S")
print("time:", time)

date_time = now.strftime("%Y-%m-%d, %H:%M:%S")
print("date and time:",date_time)

以上實(shí)例輸出結(jié)果為:

year: 2020
month: 09
day: 25
time: 10:24:28
date and time: 2020-09-25, 10:24:28

Python 日期和時(shí)間Python 日期和時(shí)間

下一節(jié):Python time strptime()方法

Python 教程

相關(guān)文章