天天看點

python擷取目前日期_Python程式擷取目前日期

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擷取目前日期