从 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