Python 3.x 中如何使用 datetime 模組進行日期和時間處理
在 Python 程式設計中,經常需要對日期和時間進行處理。 Python 的 datetime 模組提供了一些強大的功能,用於處理日期和時間物件。本文將介紹如何使用 datetime 模組進行日期和時間處理,並給出一些實際的程式碼範例。
要使用datetime 模組,首先需要匯入它:
import datetime
使用datetime.datetime.now()
方法可以取得目前的日期和時間。下面的程式碼範例示範如何取得目前日期和時間,並列印輸出:
import datetime now = datetime.datetime.now() print("当前日期和时间:", now)
執行上述程式碼,輸出如下:
当前日期和时间: 2022-01-01 12:34:56.789012
可以使用datetime.datetime(year, month, day, hour, minute, second, microsecond)
方法建立一個指定日期和時間的datetime 物件。下面的程式碼範例建立了一個datetime 對象,並列印輸出:
import datetime dt = datetime.datetime(2021, 12, 31, 23, 59, 59, 999999) print("指定的日期和时间:", dt)
運行以上程式碼,輸出如下:
指定的日期和时间: 2021-12-31 23:59:59.999999
#datetime 物件有許多屬性和方法可以用來取得日期和時間的各個部分。下面的程式碼範例示範如何取得年、月、日、小時、分鐘、秒和微秒:
import datetime now = datetime.datetime.now() year = now.year month = now.month day = now.day hour = now.hour minute = now.minute second = now.second microsecond = now.microsecond print("当前日期和时间:", now) print("年:", year) print("月:", month) print("日:", day) print("小时:", hour) print("分钟:", minute) print("秒:", second) print("微秒:", microsecond)
#執行上述程式碼,輸出如下:
当前日期和时间: 2022-01-01 12:34:56.789012 年: 2022 月: 1 日: 1 小时: 12 分钟: 34 秒: 56 微秒: 789012
datetime 物件支援日期和時間的加減運算。可以使用 timedelta
物件來指定要加減的時間間隔。下面的程式碼範例示範如何進行日期和時間的加減運算:
import datetime now = datetime.datetime.now() one_day = datetime.timedelta(days=1) yesterday = now - one_day tomorrow = now + one_day print("昨天:", yesterday) print("明天:", tomorrow) one_hour = datetime.timedelta(hours=1) one_hour_later = now + one_hour one_hour_ago = now - one_hour print("一个小时前:", one_hour_ago) print("一个小时后:", one_hour_later)
執行以上程式碼,輸出如下:
昨天: 2021-12-31 12:34:56.789012 明天: 2022-01-02 12:34:56.789012 一个小时前: 2022-01-01 11:34:56.789012 一个小时后: 2022-01-01 13:34:56.789012
可以使用strftime()
方法將datetime 物件格式化為字串。下面的程式碼範例示範如何將日期和時間格式化為不同的字串表示:
import datetime now = datetime.datetime.now() # 输出日期部分 print("当前年月日:", now.strftime("%Y-%m-%d")) print("当前月日年:", now.strftime("%m/%d/%Y")) # 输出时间部分 print("当前时分秒:", now.strftime("%H:%M:%S")) print("当前时分秒(12小时制):", now.strftime("%I:%M:%S %p")) print("当前时分秒微秒:", now.strftime("%H:%M:%S.%f")) # 输出星期几 print("当前星期几:", now.strftime("%A"))
運行以上程式碼,輸出如下:
当前年月日: 2022-01-01 当前月日年: 01/01/2022 当前时分秒: 12:34:56 当前时分秒(12小时制): 12:34:56 PM 当前时分秒微秒: 12:34:56.789012 当前星期几: Saturday
本文介紹了在Python 3.x 中使用datetime 模組進行日期和時間處理的基本操作。掌握了這些基礎知識後,你可以更方便地處理日期和時間數據,從而更有效率地開發與時間相關的應用程式。希望本文對你有幫助!
以上是Python 3.x 中如何使用datetime模組進行日期和時間處理的詳細內容。更多資訊請關注PHP中文網其他相關文章!