python打印当前GMT时间为13位Linux

时间:2017-12-06 10:13:45

标签: python python-3.x python-2.7

如何将当前GMT时间打印到13位Linux时间戳?我需要在标题对象中将其作为字典提交。

1 个答案:

答案 0 :(得分:0)

根据python 2.7文档:

 `import time`
 `time.gmtine()`

将返回一个time.struct_time对象,代表以下内容:

Index   Attribute   Values

0   tm_year (for example, 1993)

1   tm_mon  range [1, 12]

2   tm_mday range [1, 31]

3   tm_hour range [0, 23]

4   tm_min  range [0, 59]

5   tm_sec  range [0, 61]; see (2) in strftime() description

6   tm_wday range [0, 6], Monday is 0

7   tm_yday range [1, 366]

8   tm_isdst    0, 1 or -1; see below

也许它会对你有所帮助。 链接到文档:https://docs.python.org/2.7/library/time.html#time.strptime