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.aspx
python獲取當前日期