网站流量怎么做,怎么做旅店网站,做网站要有数据库么,w网站建设需求说明python获取当前日期In the below example – we are implementing a python program to get the current date. 在下面的示例中-我们正在实现一个python程序来获取当前日期 。 Steps: 脚步#xff1a; Import the date class from datetime module. 从datetime模块导入日期类…python获取当前日期In the below example – we are implementing a python program to get the current date. 在下面的示例中-我们正在实现一个python程序来获取当前日期 。 Steps: 脚步 Import the date class from datetime module. 从datetime模块导入日期类。 Call today() function which is a library function of date class. 调用today()函数该函数是日期类的库函数。 Finally, print the date. 最后打印日期。 # Python program to get current date
# importing the date class
# from datetime module
from datetime import date
# getting the current date
current_date date.today()
# printing the date
print(Current date is: , current_date)
Output 输出量 Current date is: 2020-03-09
翻译自: https://www.includehelp.com/python/program-to-get-current-date.aspxpython获取当前日期