在Python 中將日期字串轉換為日期物件
在Python 中,您可能會遇到需要將日期字串轉換為日期時間的情況.date 對象,但不是datetime.datetime 對象。假設你有一個格式為「%d%m%Y」的字串,例如「24052010」。
datetime 模組為此轉換提供了一個方便的方法:strptime。此方法可讓您指定輸入格式並直接產生 datetime.date 物件。
要將給定字串轉換為datetime.date 對象,請按照以下步驟操作:
import datetime # Import the necessary modules import datetime # Parse the date string into a date object date_obj = datetime.datetime.strptime('24052010', "%d%m%Y").date() # Print the date object print(date_obj)
輸出:
datetime.date(2010, 5, 24)
如您所見,產生的date_obj 是一個datetime.date 對象,表示從字串解析出的日期。
以上是如何在 Python 中將日期字串轉換為日期物件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!