在 Python 中獲取當前日期

Rayven Esplanada 2021年7月20日 2021年3月21日
在 Python 中獲取當前日期

本教程演示瞭如何在 Python 中獲取當前日期。

在 Python 中使用 datetime 模組獲取當前日期

datetime 模組具有專用於 Python 中日期和時間操作的實用程式功能。在模組內,它具有一個具有相同名稱的物件,該物件具有函式 today(),該函式以預設的日期時間格式返回當前日期和時間。

例如,匯入 datetime 模組並直接列印 datetime.today() 的輸出。

from datetime import datetime

print(datetime.today())

輸出:

2021-03-09 15:05:55.020360

要修改日期時間的預設格式,請使用 strftime 格式,並呼叫 datetime 模組中內建的 strftime() 方法。

例如,要顯示不帶時間的當前日期,其格式為%Y-%m-%d

from datetime import datetime

print(datetime.today().strftime('%Y-%m-%d'))

輸出:

2021-03-09

要包括時間但不包括秒和毫秒,其格式應為%Y-%m-%d %H-%M

from datetime import datetime

print(datetime.today().strftime('%Y-%m-%d %H:%M'))

輸出:

2021-03-09 15:05

另一種格式是包括星期幾。在此示例中,我們將使用月份的實際名稱。

from datetime import datetime

print(datetime.today().strftime('%A, %B %d, %Y %H:%M:%S'))

輸出:

Tuesday, March 09, 2021 15:05:55

總之,可以使用函式 today() 來使用 datetime 模組獲取當前日期。要廣泛修改預設日期格式,可以使用 strftime 函式遵循和應用 strftime 格式。

Rayven Esplanada avatar Rayven Esplanada avatar

Skilled in Python, Java, Spring Boot, AngularJS, and Agile Methodologies. Strong engineering professional with a passion for development and always seeking opportunities for personal and career growth. A Technical Writer writing about comprehensive how-to articles, environment set-ups, and technical walkthroughs. Specializes in writing Python, Java, Spring, and SQL articles.

LinkedIn

相關文章 - Python DateTime