描述
Pythom时间法localtime()类似于 gmtime() 但它将秒数转换为本地时间。如果未提供 secs 或 None,则使用 time() 返回的当前时间。当 DST 适用于给定时间时,dst 标志设置为 1。
用法
以下是语法localtime()方法≫
time.localtime([ sec ])
参数
sec─这些是要转换为结构 struct_time 表示的秒数。
返回值
此方法不返回任何值。
示例
下面的例子展示了 localtime() 方法的用法。
#!/usr/bin/python
import time
print "time.localtime():%s" % time.localtime()
当我们运行上面的程序时,它会产生以下结果——
time.localtime():(2009, 2, 17, 17, 3, 38, 1, 48, 0)
相关用法
- Python time ctime()用法及代码示例
- Python time mktime()用法及代码示例
- Python time sleep()用法及代码示例
- Python time strftime()用法及代码示例
- Python time clock()用法及代码示例
- Python time asctime()用法及代码示例
- Python time altzone()用法及代码示例
- Python time tzset()用法及代码示例
- Python time time()用法及代码示例
- Python time replace()用法及代码示例
- Python time gmtime()用法及代码示例
- Python time strptime()用法及代码示例
- Python time.monotonic()用法及代码示例
- Python time.asctime()用法及代码示例
- Python time.ctime()用法及代码示例
- Python time.perf_counter()用法及代码示例
- Python time.get_clock_info()用法及代码示例
- Python time.gmtime()用法及代码示例
- Python time.time()用法及代码示例
- Python time.mktime()用法及代码示例
注:本文由纯净天空筛选整理自 Python time localtime() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。