Python 日期和時(shí)間用法超強(qiáng)總結(jié)
時(shí)間無疑是生活各個(gè)方面中最關(guān)鍵的因素之一,因此,記錄和跟蹤時(shí)間變得非常重要。在 Python 中,可以通過其內(nèi)置庫跟蹤日期和時(shí)間。今天我們來介紹關(guān)于 Python 中的日期和時(shí)間,一起來了解如何使用time和datetime模塊查找和修改日期和時(shí)間。
Python 中處理日期和時(shí)間的模塊
Python 提供了time和datetime模塊,可以幫助我們輕松獲取和修改日期和時(shí)間,下面讓我們來逐一了解一下。
time 模塊
該模塊包括使用時(shí)間執(zhí)行各種操作所需的所有與時(shí)間相關(guān)的功能,它還允許我們?cè)L問多種用途所需的時(shí)鐘類型。
內(nèi)置函數(shù):
請(qǐng)看下表,它描述了時(shí)間模塊的一些重要內(nèi)置功能。
function | Description |
time() | 返回自epoch以來經(jīng)過的秒數(shù) |
ctime() | 以經(jīng)過的秒數(shù)作為參數(shù),返回當(dāng)前日期和時(shí)間 |
sleep() | 在給定的持續(xù)時(shí)間內(nèi)停止線程的執(zhí)行 |
time.struct_time Class | 函數(shù)要么將此類作為參數(shù),要么將其作為輸出返回 |
localtime() | 以自epoch以來經(jīng)過的秒數(shù)作為參數(shù),并以時(shí)間形式返回日期和時(shí)間。struct_time格式 |
gmtime() | 與localtime()類似,返回時(shí)間。UTC格式的struct_time |
mktime() | ocaltime()的倒數(shù)。獲取包含9個(gè)參數(shù)的元組,并返回自epoch pas輸出以來經(jīng)過的秒數(shù) |
asctime() | 獲取包含9個(gè)參數(shù)的元組,并返回表示相同參數(shù)的字符串 |
strftime() | 獲取包含9個(gè)參數(shù)的元組,并根據(jù)使用的格式代碼返回表示相同參數(shù)的字符串 |
strptime() | 分析字符串并及時(shí)返回。struct_time格式 |
代碼格式化:
在用示例解釋每個(gè)函數(shù)之前,先看一下所有合法的格式化代碼的方式:
Code | Description | Example |
%a | Weekday (short version) | Mon |
%A | Weekday (full version) | Monday |
%b | Month (short version) | Aug |
%B | Month (full version) | August |
%c | Local date and time version | Tue Aug 23 1:31:40 2019 |
%d | Depicts the day of the month (01-31) | 07 |
%f | Microseconds | 000000-999999 |
%H | Hour (00-23) | 15 |
%I | Hour (00-11) | 3 |
%j | Day of the year | 235 |
%m | Month Number (01-12) | 07 |
%M | Minutes (00-59) | 44 |
%p | AM / PM | AM |
%S | Seconds (00-59) | 23 |
%U | Week number of the year starting from Sunday (00-53) | 12 |
%w | Weekday number of the week | Monday (1) |
%W | Week number of the year starting from Monday (00-53) | 34 |
%x | Local date | 06/07/22 |
%X | Local time | 12:30:45 |
%y | Year (short version) | 22 |
%Y | Year (full version) | 2022 |
%z | UTC offset | +0100 |
%Z | Timezone | CST |
%% | % Character | % |
struct_time 類具有以下屬性:
Attribute | Value |
tm_year | 0000, .., 2019, …, 9999 |
tm_mon | 1-12 |
tm_mday | 1-31 |
tm_hour | 0-23 |
tm_min | 0-59 |
tm_sec | 0-61 |
tm_wday | 0-6 (Monday is 0) |
tm_yday | 1-366 |
tm_isdst | 0, 1, -1 (daylight savings time, -1 when unknown) |
現(xiàn)在讓我們看幾個(gè) time 模塊的例子。
使用time模塊查找日期和時(shí)間
使用上表中描述的內(nèi)置函數(shù)和格式化代碼,可以在 Python 中輕松獲取日期和時(shí)間。
Output:
datetime 模塊
與time模塊類似,datetime模塊包含處理日期和時(shí)間所必需的所有方法。
內(nèi)置功能:
下表介紹了本模塊中的一些重要功能:
function | Description |
datetime() | datetime 的構(gòu)造函數(shù) |
datetime.today() | 返回當(dāng)前本地日期和時(shí)間 |
datetime.now() | 返回當(dāng)前本地日期和時(shí)間 |
date() | 以年、月、日為參數(shù),創(chuàng)建相應(yīng)的日期 |
time() | 以小時(shí)、分鐘、秒、微秒和tzinfo作為參數(shù),并創(chuàng)建相應(yīng)的日期 |
date.fromtimestamp() | 轉(zhuǎn)換秒數(shù)以返回相應(yīng)的日期和時(shí)間 |
timedelta() | 它是不同日期或時(shí)間之間的差異(持續(xù)時(shí)間) |
使用 datetime 查找日期和時(shí)間
現(xiàn)在,讓我們嘗試實(shí)現(xiàn)這些函數(shù),以使用datetime模塊在 Python 中查找日期和時(shí)間。
Output: