Python time.ctime()方法将自纪元以来的时间(秒)转换为本地时间的字符串。这等效于asctime(localtime(seconds))。当不存在时间元组时,使用localtime()返回当前时间。
用法:time.ctime([ sec ])
参数:
- sec:要转换为字符串表示形式的秒数。
范例1:
让我们来看一下代码,并附上说明:
Python3
# imort module
import time
# here no parameter is passed
print(time.ctime())
输出:
Thu Mar 18 11:00:19 2021
打印与asctime()方法等效的标准时间。
范例2:
让我们看一下asctime()方法:
Python3
# import time
import time
# gives local time
a = time.localtime()
c = time.asctime(a)
print(c)
输出:
Thu Mar 18 11:01:02 2021
范例3:
让我们转到另一个示例,在该示例中,我们将秒数作为参数传递给ctime()方法。
Python3
# import time module
import time
# passing number of seconds as
# parameter to ctime() method
print(time.ctime(1615799665.584516))
输出:
Mon Mar 15 14:44:25 2021
范例4:
这是另一个示例,其中我们将参数传递给ctime()方法。
Python3
# import time module
import time
# passing number of seconds as
# parameter to ctime() method
print(time.ctime(1000))
输出:
Thu Jan 1 05:46:40 1970
相关用法
- Python os._exit()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.renames()用法及代码示例
- Python os.lseek()用法及代码示例
- Python PyTorch sin()用法及代码示例
- Python Sympy Line.is_parallel()用法及代码示例
- Python PIL GaussianBlur()用法及代码示例
- Python Numpy np.hermefit()用法及代码示例
- Python Numpy np.hermevander()用法及代码示例
- Python TextBlob.word_counts()用法及代码示例
- Python sympy.GreaterThan()用法及代码示例
- Python sympy.StrictLessThan()用法及代码示例
- Python sympy.LessThan()用法及代码示例
- Python sympy.StrictGreaterThan()用法及代码示例
注:本文由纯净天空筛选整理自annulata2402大神的英文原创作品 Python – time.ctime() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。