描述
方法ctime()将自纪元以来以秒表示的时间转换为表示本地时间的字符串。如果未提供 secs 或 None,则使用 time() 返回的当前时间。此函数等效于 asctime(localtime(secs))。 ctime() 不使用区域设置信息。
用法
以下是语法ctime()方法≫
time.ctime([ sec ])
参数
sec─这些是要转换为字符串表示的秒数。
返回值
此方法不返回任何值。
示例
下面的例子展示了 ctime() 方法的用法。
#!/usr/bin/python3
import time
print ("ctime:", time.ctime())
结果
当我们运行上面的程序时,它会产生以下结果——
ctime: Mon Feb 15 09:55:34 2016
相关用法
- Python 3 time clock()用法及代码示例
- Python 3 time strftime()用法及代码示例
- Python 3 time time()用法及代码示例
- Python 3 time asctime()用法及代码示例
- Python 3 time altzone()用法及代码示例
- Python 3 time localtime()用法及代码示例
- Python 3 time mktime()用法及代码示例
- Python 3 time gmtime()用法及代码示例
- Python 3 time sleep()用法及代码示例
- Python 3 time tzset()用法及代码示例
- Python 3 time strptime()用法及代码示例
- Python 3 Number tan()用法及代码示例
- Python 3 os.fstatvfs()用法及代码示例
- Python 3 List pop()用法及代码示例
- Python 3 os.minor()用法及代码示例
- Python 3 dictionary cmp()用法及代码示例
- Python 3 String isupper()用法及代码示例
- Python 3 os.close()用法及代码示例
- Python 3 List index()用法及代码示例
- Python 3 String decode()用法及代码示例
注:本文由纯净天空筛选整理自 Python 3 - time ctime() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。