在 Python 中處理日期時,通常需要將日期字串轉換為日期物件。這可以使用 Python 的 datetime 模組中的 strptime() 函數來實作。
要將日期字串轉換為datetime.date 對象,請依照下列步驟操作:
匯入datetime 模組:
<code class="python">import datetime</code>
使用strptime() 函數解析日期字串。 format 參數指定日期字串的格式。例如,以下程式碼解析格式為「%d%m%Y」的日期字串:
<code class="python">date_string = '24052010' date_format = '%d%m%Y' parsed_date = datetime.datetime.strptime(date_string, date_format)</code>
從解析的datetime.datetime 物件中擷取datetime.date 物件使用. date() 方法:
<code class="python">date_object = parsed_date.date()</code>
現在,date_object 變數將包含一個datetime.date 對象,表示由原始日期字串指定的日期。請注意,該物件不包含時間部分,僅包含年、月、日。
以上是如何將 Python 日期字串轉換為日期物件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!