以下是gmtime()方法的语法:
time.gmtime([ sec ])
参数
- sec -- 这是秒数转换成结构struct_time来表示。
返回值
下面的例子显示了gmtime()方法的使用。
#!/usr/bin/python import time print "time.gmtime() : %s" % time.gmtime()
当我们运行上面的程序,它会产生以下结果:
time.gmtime() : (2009, 2, 17, 17, 3, 38, 1, 48, 0)
您可能感兴趣的文章:
- 详解Python中time()方法的使用的教程
- 在Python中操作时间之strptime()方法的使用
- 详解Python中的strftime()方法的使用
- 在Python中操作时间之mktime()方法的使用教程
- Python中的localtime()方法使用详解
- Python中的ctime()方法使用教程
- 在Python操作时间和日期之asctime()方法的使用
- python time()的实例用法