Python time gmtime() 方法



Python 的 gmtime() 方法用于获取自纪元以来经过的时间,以对象的形式表示。该对象使用关键字“struct_time”表示,并包含各种字段以指定时间元素。此方法接受一个浮点数作为参数,该浮点数表示经过的秒数,并以对象的形式提供 UTC 时间。

与 ctime() 方法不同,此方法返回 UTC 时间的对象表示形式。

注意:如果未传递参数或作为 None 传递,则默认情况下,该方法使用 time() 返回的值作为其参数。struct_time 对象的 dst_flag 字段将始终为 0。

语法

以下是 Python time gmtime() 方法的语法:-

time.gmtime([ sec ])

参数

  • sec - (可选)表示经过秒数的浮点数。

返回值

此方法将系统中自纪元以来经过的时间作为对象返回。

示例

以下示例显示了 Python time gmtime() 方法的使用。我们没有向此方法的可选参数传递任何值。因此,该方法默认情况下将 time() 方法的返回值作为其参数。该方法返回当前时间作为对象。

import time

gt = time.gmtime()
print("Current UTC time:", gt)

当我们运行上述程序时,它会产生以下结果:-

Current UTC time: time.struct_time(tm_year=2023, tm_mon=1, tm_mday=9, tm_hour=12, tm_min=28, tm_sec=40, tm_wday=0, tm_yday=9, tm_isdst=0)

示例

如果传递的参数是表示自系统纪元以来经过的秒数的整数,则该方法将返回经过时间后的日期的对象表示形式。

在下面的示例中,我们试图找到自纪元以来 1000 秒后的日期。执行此程序的系统的纪元在 UTC 时间为“Thu Jan 1 00:00:00 1970”。此方法返回经过秒数后的时间。

import time

# Passing the seconds elapsed as an argument to this method
gt = time.gmtime(1000)
print("Python UTC time:", gt)

Python UTC time: time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=16, tm_sec=40, tm_wday=3, tm_yday=1, tm_isdst=0)

示例

gmtime() 方法也可用于获取系统在 UTC 时间中的纪元。

据说该方法返回根据系统纪元计算的给定经过秒数后的时间。因此,如果我们将参数作为“0”传递,则该方法将返回系统的纪元。如果需要查找纪元的本地时间,则使用 ctime() 方法。

import time

# Passing the seconds elapsed as an argument to this method
gt = time.gmtime(0)
print("The epoch of the system:", gt)

让我们编译并运行上述程序,以产生以下结果:-

The epoch of the system: time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=1, tm_isdst=0)

示例

此方法不考虑表示经过秒数的浮点数参数的小数部分。

让我们将 2.99 秒作为参数传递给 gmtime() 方法。即使该数字几乎等于 3 秒,也预计该方法将完全忽略小数部分,并将参数仅视为 2 秒。它在下面的示例中显示。

import time

# Passing the seconds elapsed as an argument to this method
gt = time.gmtime(2.99)
print("Time after elapsed seconds:", gt)

如果我们编译并运行上述程序,则输出如下:-

Time after elapsed seconds: time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=2, tm_wday=3, tm_yday=1, tm_isdst=0)
python_date_time.htm
广告