從 Python 中的日期時間物件獲取年份

Fariba Laiq 2022年5月17日
從 Python 中的日期時間物件獲取年份

我們將從 datetime 物件中獲取年份。基本上,datetime 是一個由處理日期和時間的類組成的模組。我們可以建立、儲存、訪問、格式化日期等等。

從 Python 中的 datetime 物件獲取年份

datetime 物件獲取年份的技術非常簡單。datetime 物件具有某些屬性,如年、月、日、小時、分鐘和秒等(取決於輸入日期的格式)。

我們將訪問 datetime 物件的年份屬性,並從日期獲取年份。在此示例中,我們將從今天的日期(當前日期)獲取年份。舉個更清楚的例子,我們輸出今天的日期,包括日、月和年。然後我們訪問 datetime 物件的年份屬性並輸出它。

示例程式碼:

# python 3.x
import datetime
date = datetime.date.today()
print("Date is:", date)
year=date.year
print("Year of the Date is:", year)

輸出:

Date is: 2021-12-05
Year of the Date is: 2021
Author: Fariba Laiq
Fariba Laiq avatar Fariba Laiq avatar

I am Fariba Laiq from Pakistan. An android app developer, technical content writer, and coding instructor. Writing has always been one of my passions. I love to learn, implement and convey my knowledge to others.

LinkedIn

相關文章 - Python DateTime