精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Python time strftime() 方法

Python time strftime() 方法

Python 日期和時間Python 日期和時間

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

 

語法

strftime()方法語法:

time.strftime(format[, t])

 

參數(shù)

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

 

返回值

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

 

說明

python中時間日期格式化符號:

  • %y 兩位數(shù)的年份表示(00-99)
  • %Y 四位數(shù)的年份表示(000-9999)
  • %m 月份(01-12)
  • %d 月內(nèi)中的一天(0-31)
  • %H 24小時制小時數(shù)(0-23)
  • %I 12小時制小時數(shù)(01-12)
  • %M 分鐘數(shù)(00=59)
  • %S 秒(00-59)
  • %a 本地簡化星期名稱
  • %A 本地完整星期名稱
  • %b 本地簡化的月份名稱
  • %B 本地完整的月份名稱
  • %c 本地相應的日期表示和時間表示
  • %j 年內(nèi)的一天(001-366)
  • %p 本地A.M.或P.M.的等價符
  • %U 一年中的星期數(shù)(00-53)星期天為星期的開始
  • %w 星期(0-6),星期天為星期的開始
  • %W 一年中的星期數(shù)(00-53)星期一為星期的開始
  • %x 本地相應的日期表示
  • %X 本地相應的時間表示
  • %Z 當前時區(qū)的名稱
  • %% %號本身

 

實例

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

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

# 通過導入 __future__ 包來兼容 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)

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

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

Python 日期和時間Python 日期和時間

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

Python 教程

相關(guān)文章