In the below example – we are implementing a python program to print the current/ today's year, month and year.
在下面的示例中-我们正在实现一个python程序来打印当前/今天的年,月和年 。
Steps:
脚步:
- Import the date class from datetime module - 从datetime模块导入日期类 
- Create a date object of today's date – call the today() function of date class to get the current date. - 创建今天日期的日期对象–调用date类的today()函数以获取当前日期。 
- By using the date object – we can extract and print today's year, month and day. - 通过使用日期对象,我们可以提取和打印今天的年,月和日。 
# Python program to
# print today's year, month and day
# importing the date class datetime module
from datetime import date
# creating the date object of today's date
current_date = date.today() 
# printing the current date
print("Current date: ", current_date)
# extracting the current year, month and day
print("Current year:", current_date.year)
print("Current month:", current_date.month)
print("Current day:", current_date.day)
Output
输出量
Current date:  2020-03-09
Current year: 2020
Current month: 3
Current day: 9
翻译自: https://www.includehelp.com/python/program-to-print-todays-year-month-and-day.aspx